Can you be more speciffic?
What exactly do you understand by "appropriate text boxes"?
How do you decide if a text box is appropriate or not?
Then we'll be able to help you.
intF = FreeFile
Open "data.txt" For Input As intF
While Not EOF(intF)
Line Input #intF, strX
Text1.Text = Left(strX, 14)
Text2.Text = Mid(strX, 15, 14)
Text3.Text = Mid(strX, 30, 14)
... etc, etc.
Wend
Close intF
Andy
--
"Logic is invincible because in order to combat logic it is necessary to use logic." -- Pierre Boutroux
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.