With the following code I can write the contents of a textfile into a textbox on a form (on form load).
Dim f As Integer
f = FreeFile
Open CurrentProject.Path & "\versioninfo.txt" For Input As #f
Me.txtdisplay = Input(LOF(f), f)
Close #f
Unfortunately my txt file is too large...