|
-
Sep 20th, 2002, 12:37 PM
#1
Thread Starter
Member
Saveing on the fly?
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?
-
Sep 20th, 2002, 12:42 PM
#2
PowerPoster
I think this is what you need:
Open somefile For Append As #1
-
Sep 20th, 2002, 12:45 PM
#3
Thread Starter
Member
and when I go to save the information do I simply :
PRINT #1 date, data2, data3
close #1
-
Sep 20th, 2002, 12:49 PM
#4
PowerPoster
-
Sep 20th, 2002, 12:50 PM
#5
Thread Starter
Member
-
Sep 20th, 2002, 12:51 PM
#6
PowerPoster
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
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|