I have been programming in VB 6.0 for some time now, but I still can't output more than one line to a file. Here is my code:

Open "blah.txt" For Output As #1
Print #1, "YES"
Print #1, "NO"
Close #1

only "YES" shows up in "blah.txt", what is wrong???