Click to See Complete Forum and Search --> : Save 3 textboxes............
ant
June 28th, 2001, 01:45 PM
I want when the user clicks on "Save As" button, it saves 3 textboxes as 1 file,and also saves the text in the textboxes as 3 different *.js files. Like a visual basic project. Please help, I'll give ratings of 10.
--Ant
--------------------------------------------------
check out my newest freeware
E-mail me at: cgeorge@thevortex.com
for the address
Harini
June 28th, 2001, 02:19 PM
Hello,
I'm interested in the ratings, but try using Richtextboxes as they give you the option of saving to files.
Thanks
Harini
Harini
June 28th, 2001, 02:20 PM
Hello,
I'm not interested in the ratings, but try using Richtextboxes as they give you the option of saving to files.
Thanks
Harini
shree
June 28th, 2001, 07:03 PM
open "all.txt" for output as #1
print #1, text1.text & text2.text & text3.text
close #1
open "file1.js" for output as #1
print #1, text1.text
close #1
open "file2.js" for output as #1
print #1, text2.text
close #1
open "file3.js" for output as #1
print #1, text3.text
close #1
ant
June 29th, 2001, 06:42 AM
how do i make it so that it loads whichever file the user saved the 3 files as?
--Ant
--------------------------------------------------
check out my newest freeware
E-mail me at: cgeorge@thevortex.com
for the address
codeguru.com
Copyright Internet.com Inc., All Rights Reserved.