Talismanic
Registered User.
- Local time
- Today, 22:25
- Joined
- May 25, 2000
- Messages
- 377
This is a Visual Basic question but I was hoping that there is somebody here who can help me with it.
I can open and write to a .dat file with VB by using this code. How can I bring it back into my text boxes so that I can edit the data?
Open "c:\record.dat" For Append As #1
Write #1, txtFname, txtLname, txtAddress, _
txtCity, txtState, txtZip
Close #1
I can open and write to a .dat file with VB by using this code. How can I bring it back into my text boxes so that I can edit the data?
Open "c:\record.dat" For Append As #1
Write #1, txtFname, txtLname, txtAddress, _
txtCity, txtState, txtZip
Close #1