I know this method to open a textfile into a textbox:
My progam loads some paths from five textfiles (each with one line, e.g. "C:\XXXXXX\XXXXXXX.TXT").VB Code:
Filenum = FreeFile Open "c:\File1.txt" For Input As Filenum T1_DTBANK.Text = Input(LOF(Filenum), Filenum) Close Filenum
Now my question:
Is there a way, that there is only one textfile with all this things?
Is it possile, that I open the textfile,
so the textbox no. 1 has the text of the first line (of the textfile), the textbox no.2 has the text of the second line, and so on.
How do I have to modify the code?
I hope you understant my problem.
Thanks for some help, Matt :rolleyes:
