Try putting an AxWebBrowser control on your form, and then perhaps loading a
blank HTML file and manipulating that HTML by doing something like setting
the innerHTML of the BODY tag to your string. Have a search on google about
the browser control anyway.
Try putting an AxWebBrowser control on your form, and then perhaps loading a
blank HTML file and manipulating that HTML by doing something like setting
the innerHTML of the BODY tag to your string. Have a search on google about
the browser control anyway.
Or expose an IDispatch out of your form, set that to the window.external
pointer. After that, you can write any sort of script in a generic
HTML page which will allow you to do such stuff as doing..
document.write (window.external.MyHTML)..