|
-
Apr 22nd, 2002, 11:56 PM
#4
PowerPoster
Well if its only a 2 line Text File
Dim line As String
Dim Line2 As String
'Open the File
Open FileName For OutPut As #1
'Get the First Line
LineInput #1, Line
Text1.Text = Text1.Text + Line
Line = ""
'Get the Second Line
LineInput #1, Line2
Text2.Text = Text2.Text + " " + Line2
Line2 = ""
Close #1
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|