I'm going to hazard a guess that the form_load command for FS3 was:
AddObject "newObjects.utilctls.SFMain", "FS3"

The syntax given matches what's specified in 
http://www.nsbasic.com/ce/info/technotes/TN08.htm

In that case, I would try:
File.Seek(0,2)

between OpenFile and WriteText. This moves 'current position in the file' to 0 
bytes offset from end of file.

Not guaranteed to work without tweaking, but let us know if that's any help.

--- In [email protected], "Eric Pankoke" <epank...@...> 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 bigp...@...
> 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.

Reply via email to