Recent content by iwarecms

  1. I

    write contents of txt file in textbox with scrollbars

    OMG, i feel so stupid right now.
  2. I

    write contents of txt file in textbox with scrollbars

    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...
Back
Top Bottom