I want to record the data inputed by a user in 7 textboxes to a txt file...
the code that I have is this...
But for some reason, it doesn't record the data, it just puts spaces in the file.. there is nothing in it..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
What am I doing wrong?
Thanks!
-Emo




Reply With Quote