I want to record the data inputed by a user in 7 textboxes to a txt file...

the code that I have is this...

Code:
Open "C:\File.txt" For Append As #1
            Print #1, txtTime1.Text, txtTime2.Text, txtTime3.Text, txtTime4.Text, txtTime5.Text, txtTime6.Text, txtTime7.Text
Close #1
But for some reason, it doesn't record the data, it just puts spaces in the file.. there is nothing in it..

What am I doing wrong?

Thanks!
-Emo