hy,
i'm here again, yesterday i've aked you to
save 4 txtboxes into 1 file ...
it works, bu i have to load this **** now could u help me again .??
This was the saving code:
visual basic code:-------------------------------------------------------------
Dim strFile As String
Dim intFileNo As Long
intFileNo = FreeFile
strFile = Text1.Text & vbCrLf & Text2.Text & vbCrLf & Text3.Text & vbCrLf & Text4.Text
Open "c:\myfile.txt" For Output As intFileNo
Print #intFileNo, strFile
Close #intFileNo
--------------------------------------------------------------------------------
i hope u can write a short example to show me how the
LOADING works ...
THX![]()




Reply With Quote