In a module I have

VB Code:
  1. Global fileff As Integer

In Form1 on form_load I have

VB Code:
  1. fileff = FreeFile
  2.     Open "C:blah.txt" For Append As #fileff

Then in module1, when i do something like

Print #fileff, "hello"
Print #fileff, "there"

it appears in the file as:
hello
there

shouldn't it be: hellothere (this is how i want it)