as the title, how could I print a new line (blank line) in a file using VB6?
I know in c it is "\n".
Print #1, ???
Thanks!
Jim
Printable View
as the title, how could I print a new line (blank line) in a file using VB6?
I know in c it is "\n".
Print #1, ???
Thanks!
Jim
Print #1, " "
it should work also
Print #1,""
and
Print #1
(sorry, cannot test right now)
Special thanks to Lothar "the Great" Haensler. Come back soon, you Guru.