is there a way to save all information inputed into a form then go to another form and then simple add the information from form 2 to the same file.... or do I have to carry over all the inputed information tille one point and save it all?
Printable View
is there a way to save all information inputed into a form then go to another form and then simple add the information from form 2 to the same file.... or do I have to carry over all the inputed information tille one point and save it all?
I think this is what you need:
Open somefile For Append As #1
and when I go to save the information do I simply :
PRINT #1 date, data2, data3
close #1
yep
thank you!
Just try this:
VB Code:
Open "c:\somefile.txt" For Output As #1 Print #1, "some text" Close #1 Open "c:\somefile.txt" For Append As #1 Print #1, "some text" Close #1