1樓:
是讀取text1的第一行、text2的第二行~第五行?
還是把那裡的第一行放到text1,第二~第五行放到text2?
前者:dim x
dim s as string
on error resume next
x = split(text1, vbcrlf)s = x(0) & vbcrlf
x = split(text2, vbcrlf)s = s & x(1) & vbcrlf & x(2) & vbcrlf & x(3) & vbcrlf & x(4)
print s
後者:dim x
dim s as string
on error resume next
x = split(s, vbcrlf)
text1 = x(0)
text2 = x(1) & vbcrlf & x(2) & vbcrlf & x(3) & vbcrlf & x(4)
2樓:
text帶自動換行嗎?
vb 如何設定讀取密碼在ini文字中
應該這下面合適你的要求了。private sub command1 click if dir f password.ini then open f password.ini for input as 1 line input 1,mima close 1 if text1.text mima the...
VB如何連續讀取串列埠資料,vb怎樣讀取串列埠資料並進行處理?
vb6.0mscomm控制元件可以利用oncomm事件連續獲取來自外設傳送的訊號。基於 1 mscomm控制元件的rthreshold 屬性不為0和恰當的接收 2 使用電腦主機板物理com口或pci多串列埠卡上的com口com,這樣的com口是全雙工的,傳送與接收不會衝突。3 高質量的接收 和符合通...
按鍵精靈讀取檔案問題,按鍵精靈 讀取文字的問題。
嗯,的確是,那個是預設的,這也是按鍵自帶讀檔案不好的地方,如果想去掉很簡單,加一些語句就行了。text plugin.file.readfileex d 1.txt m len text text left text,m 1 messagebox text 這種方法,檔案內容只有一行才行的,不是一行...