Displaying the text file in Text box(simple code)
Displaying the text file in Text box(simple code)
API Declarations
Paste one text box with multiline property and expand its size.
Rate Displaying the text file in Text box(simple code)
(2(2 Vote))
Dim FileLength
Open "D:\karthik\testfiles\bctest1.txt" For Input As #1
FileLength = LOF(1)
var1 = Input(FileLength, #1)
Text1.Text = var1
Close #1
End Sub
Displaying the text file in Text box(simple code) Comments
No comments yet — be the first to post one!
Post a Comment