In a module I have
VB Code:
Global fileff As Integer
In Form1 on form_load I have
VB Code:
fileff = FreeFile 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)




Reply With Quote