vb 如何把多个文本框的内容做成一行添加到txt里面内容的后面并保存

2025-05-08 02:19:44
推荐回答(2个)
回答1:

3d.text=3d.text & text3.text & "," & text4.text & "," text5.text & ",1,1"
如需换行 可用 vbCrLf

回答2:

open app.path & "\3d.txt" for append as #1
print #1,text3.text & "," & text4.text & "," & text5.text & ",1,1"
close #1