hey ive got a bat file i want to loadin txt format, i can load single lines from it, well the bottom one. can any one help me load it all
heres my code
cheers for the helpPrivate Sub cmdLoad_Click()
'Call AboutText
Dim temp As String, Message As Long
'this loads the about txtfile
ChDir App.Path
Open "c:\dude.bat" For Input As #1
'While Not EOF(1)
'Line Input #1, temp
Text1.Text = Message '& vbCrLf & temp
'Wend
Close #1
AboutText = Message
End Sub


Reply With Quote
cheers