I can not reproduce your problem.
This code works fine for me:
Code:
Open "lpt1" For Output As #1
Print #1, "Hello World." & vbCrLf
Print #1, "And this is line 2." & Chr(12)  '12 = FormFeed
Close #1