Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

how do I write out to file

Status
Not open for further replies.

aarontra

Programmer
Oct 2, 2002
50
US

I need to write out an html file and save it to my computer.

I have all the html writing and I am putting it into a textbox but it is a lot of text to copy and paste into a file. I want to just save out to a file.

Is there an easy way to do this?
Thank you
Aaron
 
i imagine that you are building your html in a variable then enter this code
Open "yourfilename.html " For mode Output As #1
Print #1, your variable
close #1
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top