Hi to all here is my prob

i want to create a new text file and write only to lines in it so i use the following code
VB Code:
  1. s="ee" & vbcrlf & "kk"
  2. open app.path & "\test.txt" for append as #1
  3. print #1,s
  4. close #1
the problem is that test.txt now contains 3 lines the last one is empty like the string i entered was s=s="ee" & vbcrlf & "kk" & vbcrlf how do i overcome that one?

thnks