G
gimme_this_gimme_that
I have:
Sub Write2()
Open "C:\output.txt" For Output As #1
Print #1, "hello"
Print #1, " world"
Close #1
End Sub
Which creates a file that looks like
hello
world
Is there a way to tell Print not to add the line feed - so I can get
hello world
Thanks.
Sub Write2()
Open "C:\output.txt" For Output As #1
Print #1, "hello"
Print #1, " world"
Close #1
End Sub
Which creates a file that looks like
hello
world
Is there a way to tell Print not to add the line feed - so I can get
hello world
Thanks.