1
我必須創建一個txt文件,以便在VB6中創建一些大型內容。任何人都可以幫我解決這個問題,請告訴我參考。如何創建txt文件
我必須創建一個txt文件,以便在VB6中創建一些大型內容。任何人都可以幫我解決這個問題,請告訴我參考。如何創建txt文件
這是如何在VB6
創建一個文本文件有多大?
保持簡單:
'1 form with:
' 1 textbox: name=Text1
' 1 command button: name=Command1
Option Explicit
Private Sub Command1_Click()
Dim intFile As Integer
Dim strFile As String
strFile = "c:\temp\file.txt" 'the file you want to save to
intFile = FreeFile
Open strFile For Output As #intFile
Print #intFile, Text1.Text 'the data you want to save
Close #intFile
End Sub
這將您單擊命令按鈕,每次替換該文件,如果你想添加到文件,那麼你可以打開「進行追加」,而不是「輸出「
謝謝先生,你只是讓我的一天.. – XMozart