e.g. Inside text file:
7.30 pm
8.00 pm
How do i put the first line in one text box and the second in the other? i can't be bothered to learn databases right now, or create separate files for each line, so i'm sticking to text files to store my data.
e.g. roughly looks like this:
________
| 7.30 pm | <-- text1 (textbox)
---------------
________
| 8.00 pm | <--text2 (another textbox)
---------------
please provide code, or at least a useful link.
this is an example of what i already know about inputting data from txt files into textboxes:
Open App.Path & "\demo1.txt" For Input As #1
Text1.Text = Input(LOF(1), #1)
Close #1
please try to relate to this format
thanks in advance
Tags: