yup. the Seek worked. thanks --- In [email protected], epank...@... wrote: > > Sorry that I don't recall who it was that posted it, but did you try the > other suggestion that was given about doing a Seek to the end of the file and > then writing? As far as I know lots of people use that control, so it should > be pretty stable. > > > > ----- Original Message ----- > From: bigp...@... > To: [email protected] > Sent: Friday, February 12, 2010 12:21:53 PM GMT -05:00 US/Canada Eastern > Subject: [nsbasic-ce] Re: Writing to file keeps overwriting > > > > > > > yes i am using > AddObject "newObjects.utilctls.SFMain", "FS3" > > Is there another way I could get this to work? > > --- In [email protected] , "Eric Pankoke" <epankoke@> wrote: > > > > My guess is that you're not using the right command to append to the > > file, so it's simply opening the file and wiping out the contents every > > time you call OpenFile. Unfortunately, without knowing what type of > > object FS3 is I can't give you any more specifics. > > > > > > > > Eric Pankoke > > > > Mobile Games Reviewer > > > > My Site: http://www.rustysabre.com/ > > > > Reviews: http://www.technobrains.com/, http://www.theappera.com > > > > Blog: http://www.iphonelife.com/blogs/eric-pankoke > > > > Twitter: http://www.twitter.com/RustySabre/ > > > > > > > > -----Original Message----- > > From: [email protected] [mailto: [email protected] ] On > > Behalf Of bigpete@ > > Sent: Wednesday, February 10, 2010 6:40 PM > > To: [email protected] > > Subject: [nsbasic-ce] Writing to file keeps overwriting > > > > > > > > > > > > This code is in a command button. All the proper AddObjets are in the > > From1_Load. > > > > Every time I click the command button I want what ever is typed into > > textbox1 and textbox3 to get written to a file > > > > I enter a some info into the textboxes, tap the command button, then > > retype some different information into the textboxs and tap the command > > button...etc > > > > What is happening is that only the last piece of data I type into the > > text boxes show up in the file. > > > > How do I get it to the information from the textboxes to save each time > > I click the command button and not overwite. > > > > Dim file > > Dim abc > > > > abc = textbox1.Text & "," & textbox3.Text & > > > > Set File = FS3.OpenFile(filename3) > > > > File.WriteText abc,1 > > File.close > > >
-- You received this message because you are subscribed to the Google Groups "nsb-ce" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/nsb-ce?hl=en.
