I am creating a project that requires me to get the source code off of a web page. Of all the C++ books I have, the most any of them tell me is that I have to use CHtmlView's GetHtmlDocument which uses the IDispatch interface, then use the IDispatch finction Invoke(...) to obtain the source. I cannot find proper documentation on how to implement the IDispatch interface and retrieve the source code from the document.
CHtmlView myview;
myview.Navigate("
IDispatch* pdispatch = myview.GetHtmlDocument();
pdispatch->invoke(???...)//THIS IS WHERE I HAVE TROUBLE
lease Please help if you can!
-Brian
CHtmlView myview;
myview.Navigate("
IDispatch* pdispatch = myview.GetHtmlDocument();
pdispatch->invoke(???...)//THIS IS WHERE I HAVE TROUBLE
lease Please help if you can!
-Brian