If I received a HTML format string??...how can I display the formated results in VB???:confused:
Printable View
If I received a HTML format string??...how can I display the formated results in VB???:confused:
Save it to a temporary file and point the WebBrowser control at it.
I never use the web browser control, how do you point the web browser to a temp file.
Is there some way of doing this without saving it to a temporary file?
this has been answered hundreds of times before
anyway
with webbrowser1.document
.open
.write MY_HTML_STRING
.close
end with
To use that code you first have to navigate to a blank page:Quote:
Originally posted by alexandros
this has been answered hundreds of times before
anyway
with webbrowser1.document
.open
.write MY_HTML_STRING
.close
end with
WebBrowser1.Navigate "about:blank"
Alexandros, why do you use the open and close methods?? Never seen em before... what do they do? Without them you get the same results... :confused:
I searched the forum and reviewed numerous pages and did not find the answer.
Thanks TheVader, I will give this a try tomorrow.