雖然這篇vbCrLf VBA鄉民發文沒有被收入到精華區:在vbCrLf VBA這個話題中,我們另外找到其它相關的精選爆讚文章
[爆卦]vbCrLf VBA是什麼?優點缺點精華區懶人包
你可能也想看看
搜尋相關網站
-
#1其他常數
Office VBA reference topic. ... vbCrLf, Chr (13) + Chr (10), 分行符號的回車符組合 ... 有關於Office VBA 或這份文件的問題或意見反應嗎?
-
#2VB 中chr(10)、chr(13)和vblf、vbcr、vbcrlf的分别 - CSDN博客
只有只有chr(10)+chr(13)或者VBCRLF可以换行,其他的没有换行的 ... 【整理】VBA学习笔记(22)VBA常用符号常数:如chr(10) chr(13) vbcrlf 和ASCII码.
-
#3vbCrLf是Visual Basic(VB,一種程式語言)中的一個字元串常數
vbCrLf 是Visual Basic(VB,一種程式語言)中的一個字元串常數,即"Chr(13) & Chr(10)"(回車符與換行符連線在一起),是換行的意思。 中文名稱. vbCrLf.
-
#4vbCrLf - 中文百科知識
vbCrLf 是Visual Basic(VB,一種程式語言)中的一個字元串常數,即“Chr(13) & Chr(10)”(回車符與換行符連線在一起),是換行的意思。vbCrLf簡介例如:Text1.
-
#5Vbcrlf: The Visual Basic Carriage Return Line Feed - Software ...
Vbcrlf stands for “Visual Basic Carriage Return Line Feed.” It is a VBA constant for the carriage return and line feed characters.
-
#6What is vbcrlf in VBA? - Quora
Vbcrlf is VBA's equivalent of a carriage return and linefeed sequence. · Text files are not necessarily the same for Windows and OS X. · This is noteworthy if you ...
-
#7VBA Msgbox 換行方法 - 學習與邁向工程師的路
VBA Msgbox 換行方法: vbCrlf ex:msgbox "第一行" & vbCrlf & "第二行"===
-
#8vbCrLf_百度百科
vbCrLf 是Visual Basic(VB,一种编程语言)中的一个字符串常数,即“Chr(13) & Chr(10)”(回车符与换行符连接在一起),是换行的意思。
-
#9chr(13)和vblf、vbcr、vbcrlf的分别| 我也是菜鳥 - 點部落
VB 中chr(10)、chr(13)和vblf、vbcr、vbcrlf的分别:
-
#10vbCrLf的功能是什麼?- 藍色小舖BlueShop
請問vbCrLf的功用是什麼? Console.WriteLine("Passed: {0}{1} Failed:{2}, passes,vbCrLf, failures")應該如何解釋呢? 再請問一下兩個很簡單的問題
-
#12Differences Between vbLf, vbCrLf & vbCr Constants - Stack ...
2 Answers · vbCr : - return to line beginning. Represents a carriage-return character for print and display functions. · vbCrLf : - similar to ...
-
#13How to Add a New Line (Carriage Return) in a String in VBA
vbCrLf constant stands for Carriage Return and Line feed, which means Cr moves the cursor to the starting of the line, and Lf moves the cursor ...
-
#14What is vbCrLf??? - Microsoft Access / VBA - Bytes Developer ...
Microsoft Access / VBA Forums on Bytes. ... vbCrLf. I Don't exactly known what it is used for. Sep 18 '12 ... vbCrLf = vbNewLine = chr(13) & chr(10).
-
#15VBA New Line / Carriage Return - Automate Excel
When working with strings in VBA, use vbNewLine, vbCrLf or vbCR to insert a line break / new paragraph. This article will also discuss how to ...
-
#163 個實用的VBA MsgBox 換行方法
本篇文章介紹3 個經常使用的MsgBox 換行方法。 內容目錄. MsgBox 基本操作; MsgBox 換行方法. vbCrLf; vbNewLine; Chr(10) ...
-
#17Differences between the constants vbCr, vbLf & vbCrLf
Hello I tried the constants vbCr, vbLf & vbCrLf in a MsgBox: MsgBox "Hi" & vbCr ... you are late binding it. http://excelmatters.com/2013/09/23/vba- ...
-
#18Excel VBA 的眉眉角角Day21: 執行外部程式
相信在很多時候,你會在需要由VBA呼叫其他程式,利用Excel內建的shell函數,其實可以 ... Else MsgBox "執行錯誤" & vbCrLf & "代碼:" & errorCode & vbCrLf & "執行 ...
-
#19vba remove last vbcrlf Code Example
“vba remove last vbcrlf” Code Answer ; 1. ' Removes the Line Break from the string if my string Ends with Line Break ; 2. Sub RemoveLineBreak( ...
-
#20vba - 将Excel 换行符转换为vbCrLf? - IT工具网
在Excel 中,单元格换行符由 vbLf 表示, 不是 vbCrLf . 您可以手动替换换行符: Dim CellValue As String CellValue = Replace(Range("A" & r).Value, vbLf, vbCrLf)
-
#21[VB6] 如何讓輸出換行(Print newline) - allen0818 的部落格- 痞 ...
vbCrLf = Char(13) + Char(10). ... References: 1. http://stackoverflow.com/questions/27067331/add-newline-to-vba-vb6 ...
-
#22VBA Strings & Characters - Built-in Constants - BetterSolutions ...
VBA.Constants, Chr, Comments. vbCr, Chr(13), Carriage return character. vbLf, Chr(10), Linefeed character. vbCrLf, Chr(13) + Chr(10), Carriage return ...
-
#23vba 請問input$ 與vbcrLF ,vbLF - Mobile01
vba 請問input$ 與vbcrLF ,vbLF. 前往頁尾 ... dataArray = Split(Input$(LOF(1), #1), vbCRLf) 有什麼不同? input$與input有什麼差異?謝謝您.
-
#24【整理】VBA学习笔记(22)VBA常用符号常数 - 程序员宅基地
1 VBA和EXCEL使用符号常数有语法差别1.1 语法差别比如EXCEL里使用char(10) VBA中只能 ... 【整理】VBA学习笔记(22)VBA常用符号常数:如chr(10) chr(13) vbcrlf ...
-
#25【VBA】改行コードを使う【vbCrLf、vbLf、vbCrがあります】
Excel VBAで、改行コードを使う方法をご紹介します。改行コードには、3種類あって、vbCrLf、vbLf、vbCrです。エクセルで使われる改行コードが、vbLf ...
-
#26訊息方塊(MsgBox) · VBA 筆記
範例1:基本的訊息方塊. MsgBox Prompt:="第1行訊息" & vbCrLf & "第2行訊息", Title:="標題". 或簡寫成 MsgBox "第1行訊息" & vbCrLf & "第2行訊息", , "標題" ...
-
#27【整理】VBA学习笔记(22)VBA常用符号常数:如chr(10) chr ...
【整理】VBA学习笔记(22)VBA常用符号常数:如chr(10) chr(13) vbcrlf 和ASCII码.
-
#28VB 中chr(10)、chr(13)和vblf、vbcr、vbcrlf的分别 - 腾讯云
最完整的VBA字符串知识介绍(续:消息框和输入框). 消息框是一个特殊的对话框,用于向用户显示一条信息。用户无法在消息框中键入任何内容 ...
-
#29Excel VBA 程式設計教學:基本字串處理(String) - 頁3,共3
這樣我們就可以利用簡單的VBA 程式將學號轉換成Email 位址: ... Val 函數的用途是將字串資料轉換為數值,而輸出時所加入的 vbCrLf 是指換行的意思。
-
#30vbcrlf - Ifty
vbCrLf 是Visual Basic(VB,一种编程语言)中的一个字符串常数,即“Chr(13) ... 26/9/2019 · When working with strings in VBA, use vbNewLine, vbCrLf or vbCR to ...
-
#31VBA constants - text format - Excel at Finance
How to convert a VBA constant to its ASCII equivalent. ... VBA constants ======== ' vbCrLf: Carriage return/linefeed character combination.
-
#32セル内改行には vbCrLf ではなく vbLf を使いましょう
という、このサイト・インストラクターのネタ帳へのアクセスがあることに気づきました。 Excel VBA(Visual Basic for Applications)からセル内改行を ...
-
#33关于解析:VBA / VB6无法识别VbCrLf | 码农家园
VBA /VB6 Not Recognizing VbCrLf大家星期五快乐!我希望对此有一些指导。我已经处理了一个.html文件,如下所示:[cc]strStringToClean ...
-
#34vbCrLf、vbLf、vbCr、vbNewLineの違いに関して | VBA
vbCrLf 、vbLf、vbCr、vbNewLineの違いに関して | VBA. 作成日:2020/01/29. このページでは VBA などで改行コード関連として使用される定数で ...
-
#35「Excel+VBA」 將tsv或者csv格式的數據讀入Excel代碼- 每日頭條
'vbcr是回車符,vblf是換行符,這兩個字符可以整合到一起表示vbCrLf ... 1、將一個csv/tsv格式文件中的所有數據讀入內存數組,用vba直接操作這個 ...
-
#36Line break: vbNewLine vs. vbCrLf vs. vbCr vs. vbLf - Autodesk ...
In iLogic and Inventor's VBA specifically, is there any reason not to use the more succinct vbCrLf, or even vbLf or vbCr?
-
#37VBA 文字列を改行する - Tipsfound
Excel VBA マクロの文字列 (String) を改行する方法を紹介します。VbCrLf を結合すると改行できます。vbLf を結合するとセル内の改行になります。コードを改行する方法 ...
-
#38[已解决]VBA中vbCrLf代表的是什么意思 - Excel精英培训
VBA 中vbCrLf代表什么意思,谢谢了[已解决]VBA中vbCrLf代表的是什么意思,Excel精英培训网.
-
#39VbLf, vbCr, vbCrLf - tutorials.de
Hallo Jungs Kann mir jemand der Unterschied zwischen VbLf, vbCr und VbCrLf erklären? Habe ein Beispiel gemacht: msgbox "1.Zeile" & vbCrLf &.
-
#40Thread: vbCrLf Vs vbNewLine - VBForums
Sups, What is the diffrence between vbCrLf and vbNewLine? I know they are breaking the text and making a new line.
-
#41請問如何用vba來將模組或代碼寫入另一個excel(頁1) - 麻辣家族 ...
vbCrLf & vbCrLf & "請將信任中心內信任存取VBA專案物件模型勾選", vbCritical + vbYesNo, "巨集設定") = vbYes Then With Application .SendKeys "t"
-
#42有沒有辦法使用與VBA默認值(vbCr / vbCrLf)不同的分隔符 ...
[英]Is there a way to read a file one line at a time using a different delimiter than VBA's default (vbCr/vbCrLf)?. 本文翻译自 Jonas Zebari ...
-
#43VBA Excel Conditions: Conditional Selections - FunctionX
vbCrLf & _ "It is used to create a procedure of a function type") Case 2 MsgBox("Correct: Except is not a keyword in " & vbCrLf & _ "Visual Basic but ...
-
#44Character array in Automation server - MATLAB - MathWorks
Examples · Pass Character Data from Visual Basic® .NET Client to MATLAB® · Pass Character Data from VBA Client to MATLAB®.
-
#45Determine if an Application is Installed | DEVelopers HUT
MS Access VBA Programming MS Excel VBA Programming MS Office MS Word VBA ... MsgBox "The following error has occured" & vbCrLf & vbCrLf & _ ...
-
#46Error Handling in Procedures - VB & VBA in a Nutshell
Private Sub Command1_Click() On Error GoTo Command1_Err Exit Sub Command1_Err: MsgBox Err.Number & vbCrLf & Err.Description, _ vbCritical, "Error!" End Sub.
-
#47VBA Tutorial => Using VBA string constants
vbCrLf : Carriage-Return & Line-Feed (a new-line in Windows); vbTab: Tab Character; vbNullString: an empty string, like "". You can use these constants with ...
-
#48Carriage Return Not Working in Messagebody - access ...
Sending Email via VBA - Carriage Return Not Working in Messagebody ... I use vbCrLf all of the time in many other emails and it works fine.
-
#49VB.NET Environment.NewLine: vbCrLf - Dot Net Perls
This property simply returns the string literal equal to vbCrLf, which is equal to "\r\n" in C# and other languages. Tip For some programmers, using Environment ...
-
#50vbCrLf, vbCr, vbLf --- Difference?? - Excel General - OzGrid.com
I've tested "vbCrLf" and "vbLf", and the difference between the 3 of them ... The VBA Help shows the same list that you referenced, Matt.
-
#51VBA: Zeilenumbruch, vbCrLf, vbLf - Office-Hilfe
VBA : Zeilenumbruch, vbCrLf, vbLf:Hallo, ich habe ein Problem, es geht darum, dass ich eine txt.-Datei in eine Excel-Datei importiere.
-
#52vbCrLf, Saltos de línea en una cadena
Para generar los saltos de línea tendremos que insertar los caracteres de salto de línea y retorno de carro. mensaje = "Hola," + chr(13) + chr( ...
-
#53How to Add a New Line to a Message Box (MsgBox) in Excel ...
The most basic MsgBox code in Excel vba is like this: Select All. Sub test() MsgBox "Hi! ... vbCrLf & vbCrLf & "This is a message box" End Sub.
-
#54FAQ · Was bedeutet vbCrLf - vb@rchiv
vb-Zentrum Entwicklerkomponenten VB/VBA, VB.NET u. ... Was bedeutet vbCrLf ? ... vbCrLf ist eine Visual Basic Konstante, die sich wie folgt zusammensetzt: ...
-
#55Применение операторов vbLf и Chr(10) в VBA - Планета ...
Могут быть и vbCrLf(в Excel он чаще применяется) и оба отдельно. Плюс есть еще и вордовский Crh(13). В общем нет универсального - все ...
-
#56【Excel VBA】改行コードの使用方法【定数vbCrLf, vbLfを使用】
VBA では下記の定数を用いて表されます。 文字列の改行:vbCrLf; セル内の改行:vbLf. 使用例 : 改行コードを用いた文字列を ...
-
#57What is vbCrLF & _ - Excel Help Forum
Quote from the VBA Help for vbCrLf. HTML Code: Miscellaneous Constants The following constants are defined in the Visual Basic for ...
-
#58VBA 向檔案寫入編碼為UTF-8的資料- IT閱讀
Cells(5, 2) & vbCrLf) ' ## outStream.SaveToFile fileSaveName, 2 '如果直接儲存檔案寫入的內容編碼為“UTF-8+”而不是“UTF-8” outStream.
-
#59【VBA】キャリッジリターンvbCr, ラインフィードvbLfで改行
いちいち使い分けるのが面倒なら vbCrLf で統一してください。 【VBA】キャリッジリターン vbCr とラインフィード vbLf. vbCr は Carriage return( ...
-
#60Excel VBA : Message Box - ListenData
Add a vbCrLf to insert a line break in VBA message box. Sub Macro6() MsgBox "This is Line #1" & vbCrLf & _ "This is ...
-
#61Lista stałych języka VBScript - Promotic
W niektórych przypadkach jest konieczna kombinacja vbCrLf (pozycja na początku nowego wiersza), niekiedy wystarcza vbLf (pozycja na nowym wierszu).
-
#62【String関数の注意点】vbCrLfで繰り返してはいけない(VBA)
今回は、String関数でvbCrLF(改行)を繰り返すと何が起こるのかを紹介します。 String(回数, 文字)String関数は文字を指定回数繰り返した文字列を ...
-
#63Vba remove last vbcrlf - Code Helper
Vba remove last vbcrlf. Copy. ' Removes the Line Break from the string if my string Ends with Line Break Sub RemoveLineBreak(myString) If Len(myString) > 0 ...
-
#64How to write text file without [0D 0A(VBCRLF)] at the End ...
VBA VBA HEX NAME LF \n VbLf Chr(10) 0x0A Line Feed CR \r VbCr Chr(13) 0x0D Carriage Return CR+LF \r\n VbCrLf Chr(10)&Chr(13) 0x0D0A Carriage ...
-
#65How to Include Error Handling in VBA Code - Database ...
How to include error handling in VBA code for Microsoft Access, Excel and Word macros to intercept and manage errors ... vbCrLf & vbCrLf & _.
-
#66Различия Между Константами vbLf, vbCrLf И vbCr
Я использовал константы типа vbLf , vbCrLf & vbCr в a MsgBox ; он производит тот же вывод в ... Почему функция VBA replace не работает с CRLF в Word и Excel.
-
#67VBA – Retain Carriage Return from Userform Textbox in ...
2020年7月25日 — If the result is zero, the CRLF sequence (represented by the Visual Basic constant vbCRLF) was not found. In that case, you want to replace ...
-
#68VBA可以跨越Excel的实例吗? - Dovov编程网
Name DoEvents Next fOk = True End If GetExcelObjectFromHwnd = fOk Exit Function MyErrorHandler: MsgBox "GetExcelObjectFromHwnd" & vbCrLf & vbCrLf & "Err ...
-
#69VBA 改行コードにまつわる話 ~vbCrLfとは - t-hom's diary
VBA で文字列を改行する方法はいくつかあるが、ネットのサンプルなどで一番多いのはvbCrLfだろう。Wikipediaによると、CrLfとはタイプライター時代の ...
-
#70The Difference Between vbCrLf, vbNewLine and Environment ...
The question, “which is better, vbCrLf, ContrlChars.CrLf, vbNewLine, ControlChars.NewLine, Environment.NewLine, ControlChars.
-
#71セル内で改行/MsgBox内で改行をする【vbCr/vbLf/vbCrLf ...
セル内やMsgBox内で改行をしたいVBAマクロでセル内の文字列の改行/Msgbox内で改行を行う場合です。改行には以下の種類があります。改行コードの違いは ...
-
#72VbCrLf: c'est quoi exactement? - Forum Excel-Pratique
ForumsExcel - VBAVbCrLf: c'est quoi exactement? VbCrLf: c'est quoi exactement? Le 18/ ...
-
#73[VB教學]強迫換行vbNewLine/vbCrLf
[VB教學]強迫換行vbNewLine/vbCrLf. 文字在TextBox遇到邊界會自動換行,但是如果想提前換行. 可以用vbNewLine或vbCrLf來強制換行 ...
-
#74VBA New Line Character vbNewLine vbCrLF and Chr(13)
Chr(13) is vbCr for carriage return and Chr(10) is vbLf . The numbers used correspond to the ascii character table. vbNewLine and vbCrLf are ...
-
#75O Que é Vbcrlf - Fórum Script Brasil
Cara vbCrLf é uma constante do Visual Basic que junta dois caracteres de controle. O LF (Line Feed) 10 em Ascii eo Cr(Carriage return) 13 em ...
-
#76Setting string length in a Type Statement using a VBCrLf
Hi, Can someone please advise if you can set a string length in a Type Statement by using a VBCrLf? For example, instead of [code VBA]Type ...
-
#77Creating a Line Break Within an SSRS Expression — SQL Chick
The vbcrlf, Visual Basic Carriage Return Line Feed, handles this quite nicely within an SSRS expression. For example:.
-
#78a)Which of the following constants CANNOT create a - Chegg
Question: a)Which of the following constants CANNOT create a new paragraph in a message box in VBA? (A)vbCrLf (B)vbNewLine (C)vbnew (D)vbLf b) · This question ...
-
#79ExcelとExcel VBAでの改行の違い
Excel VBAにおいて改行というと vbCrLf や vbLf が紹介されている。 これらの定数はどんな違いがあるのだろうか? 改行に関わる定数 定数 値(文字 ...
-
#80Visual Basic for Applications/Get the VBA Code String
Lines(1, nLines) sProj = sProj & vbCrLf & _ UCase(Chr(39) & VBComp.Name) & _ vbCrLf & vbCrLf & sMod Else 'just accum name of empty component sProj = sProj ...
-
#81【Excel/VBAのこと41】改行コード(Chr(10), Chr(13), vbCr ...
改行コード Chr(10), Chr(13), vbCr, vbLf, vbCrLf 改行に関係するVBAのコードは5種類あるようです。 Cr・・・Carriage Return(キャリッジ ...
-
#82Operátory - Excel VBA | Školení konzultace - MS Office
Jak na operátory v Excel VBA, Like, Is, OR, + atd. ... Příjmení As String, Titul As String MsgBox("První řádek " & vbCrLf & "Druhý řádek") ...
-
#83vbCr과 vbcrLf와 chr(13) 의 차이점 - Daum 블로그
교육관련/[프로그래밍]VBA. vbCr과 vbcrLf와 chr(13) 의 차이점. Hewitt. 2014. 2. 22. 04:40 댓글수0 공감수0. 캐리지리턴(CR)과 라인피드(LF)는 예전의 도트 프린터 ...
-
#84Zeilenhöhe mit vbCrLf oder vbNewLine - Herbers Excel
Excel-Forum: Zeilenhöhe mit vbCrLf oder vbNewLine. ... sagen ob ich das formatieren kann und vor allem wie? unten findet ihr den VBA Code:
-
#85Four Useful VBA Utilities for SAS® Programmers - PharmaSUG
This paper presents four VBA macro utilities, with code – one that will take all ASCII ... InsertAfter ("QC Log Check for Directory ") & FolderLoc & vbCrLf.
-
#86VBS操作Excel常見方法 - 程式前沿
FileName & vbCrLf ... strToBeWrited = strToBeWrited & vbcrlf ... 我的方法是:在EXCEL中錄製巨集,然後在EXCEL的VBA編輯器中修改語句,除錯執行 ...
-
#87VBAで改行文字LFをCRLFに変換する
VBA では改行文字用の定数が用意されています。 改行文字, 定数. CR, vbCr. LF, vbLf. CRLF, vbCrLf. OS標準の改行コード ...
-
#88Excel VBA メッセージや文字列を改行する方法 - やさしい ...
その中でも主に使用するのは「vbCrLf」もしくは、「vbNewLine」をおすすめします。 目次. 1.改行する定数; 2.改行のサンプルコード.
-
#89New Line in VBA MsgBox - WallStreetMojo
Guide to VBA New Line. Here we learn how to insert New Line in VBA MsgBox Using "vbNewLine", "Char(10)" and “vbCrLf, vbCr, vbLf” with examples.
-
#90OffensiveVBA/AES.vba at main · S3cur3Th1sSh1t ... - GitHub
OffensiveVBA/src/AES.vba. Go to file · Go to file T; Go to line L; Copy path; Copy permalink ... CryptoDemo = "demoAESKey: " & demoAESKey & vbCrLf & _.
-
#91【VBA入門】セル内とMsgBox内、コード内での改行コードの ...
Windowsの場合、セル中の文章の改行コードはvbLf(char(10))を使用しますが、メッセージボックスに表示する場合はvbCrLf(Chr(13) + Chr(10))を使用し ...
-
#92Excel VBA Tips[テキストファイルの最終行を取得する] - Office ...
ここからはイメージの世界です。このログファイルは、実際には次のように記録されています。 各行のデータが改行コード(vbCrLf)で ...
-
#93Excel List AutoFilter Macros - Contextures
Also see: Excel Worksheet AutoFilter VBA and Excel AutoFilter Basics ... "Could not clear filters" _ & vbCrLf _ & "in selected columns" On ...
-
#94엑셀 VBA 메시지박스 (MsgBox) 에 문자열 줄 바꿈을 적용하는 ...
보통은 텍스트 줄 바꿈으로 표현할 때 \n\r 을 넣습니다. 그럼 VBA 에서는 어떻게 표현할까요? VBA 에서는 상수 값인 vbCrLf 로 표현하거나 chr(13) & chr( ...
-
#95私これからVBAでの改行は「vbNewLine」にします | KEYPOINT
さて最近、私はAccessで、VBAを使いながら開発をしています。 ... 定数「vbCrLf」なら、「Chr(13) + Chr(10)」の組み合わせとして使えます。 さらに!
-
#96Excel 2010 Power Programming with VBA - 第 890 頁 - Google 圖書結果
Top =28 End With ' Add event-hander subs for the CommandButtons Code = Code & “ End If” & vbCrLf Code = Code & “ Next ctl” & vbCrLf Code = Code & “ Unload ...
-
#97Python x Excel VBA x JavaScript|網路爬蟲 x 實戰演練(電子書)
getMonth ( ) +1 , + vbCrlf 020 JScode = JScode + " I " d + " " : this.getDate ( ) , " + vbCrlf 021 JScode = JScode + " " + " " : this.
-
#98AutoCAD VBA二次开发教程(实例通)(配光盘)
6.3.3 步骤在 AutoCAD 2005 中,打开 VBA 管理器,创建一个新工程,保存在适当的位置。 ... j } $ sv 位置度- j " & vbCrLf & _ " { \ Fgt ; r } $$ v 同轴度-r ...
-
#99Excel 2007 VBA Programming with XML and ASP
CreateEventProc("Click", "cmdCancel") Unload Me" ' write a procedure to handle OK button sVBA = & "Private Sub cmd0K_Click()" & vbCrLf Dim ctrl As Control" ...
vbcrlf 在 コバにゃんチャンネル Youtube 的最讚貼文
vbcrlf 在 大象中醫 Youtube 的最佳解答
vbcrlf 在 大象中醫 Youtube 的最讚貼文