|
-
Sep 26th, 2003, 04:11 PM
#1
Thread Starter
New Member
output to textfield
Hi,
The code below currently display the files to the Output Screen.
How would I modify the code to display the external file contents to a textfield?
Dim readFile As String
FileOpen(1, "C:\journal.doc", OpenMode.Input)
Do While Not EOF(1)
Input(1, readFile)
Console.WriteLine(readFile, (txtDocument.Text))
Loop
FileClose(1)
Thank You
iautin
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
|