2014-01-14 276 views
1

我必須創建一個txt文件,以便在VB6中創建一些大型內容。任何人都可以幫我解決這個問題,請告訴我參考。如何創建txt文件

回答

11

這是如何在VB6

創建一個文本文件

Source

16

有多大?

保持簡單:

'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 

這將您單擊命令按鈕,每次替換該文件,如果你想添加到文件,那麼你可以打開「進行追加」,而不是「輸出「

reference

+1

謝謝先生,你只是讓我的一天.. – XMozart