Hello,
I have a Pushbutton named Export, which,when clicked, I would like it to
export data (EF1.text, EF2.text, EF3.text, EF4.text) from some chosen
editfields (EF1, EF2, EF3, EF4) to a new text file on the desktop.
Not Save or SaveAs like when the whole document is saved.
How is that done?
Thanks.
Lennox.
Lennox,
I was just working on something like this (on windows)
You could use the Volume(0).Child method to save the file and something like
this should work:
tos = f.CreateTextFile
tos.Writeline Fnamefield.text
tos.writeline Lnamefield.text
tos.writeline SNfield.text
tos.Close
FnameField.Text = ""
Lnamefield.Text = ""
SNfield.text = ""
-Briman
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>