I am developing a native application using C++ Builder. I have added an internal browser control (using the supplied TCppWebBrowser class) to the application (a first for me :-)). This control currently uses an external HTML file to start things up. So far, So good...
I have seen a similar application written in VB.NET and there I saw that you could command the browser control (System.Windows.Forms.WebBrowser) to load an internal content (i mean HTML page). It was something like this:
theWebBrowser.DocumentText = theStringThatHoldsTheContent
Does anybody know TCppWebBrowser class or any queried interface through it has this functionality ? Any URL, InterfaceName, snippet is OK...
Thanks In Advance...