i was wondering if anybody knew how to take text boxes and then output them to a html file in a pre-positioned area on the HTML Page?
Printable View
i was wondering if anybody knew how to take text boxes and then output them to a html file in a pre-positioned area on the HTML Page?
Code:Open "C:\MyHTML.htm" For Output As #1
Print #1, Text1.text
Close #1
Thanks, that worked great, would you by any chance know how i could make it rename to say text1.text, and format the data in a table on the HTML page?
To load the saved html file:
And then you can use the code above to re-save it.Code:Open "C:\MyHTML.htm" For Input As #1
Text1.Text = Input$(LOF(1), 1)
Close #1