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