Click to See Complete Forum and Search --> : Visual c++ 6.0 and HTML??


scootz3345
July 24th, 2005, 11:08 PM
hello....im new here...was just wondering..
what language can i use as graphical user visual from Visual C++ 6.0??

is it possible to link Visual C++ and HTML?? is it difficult??

any good / usefull tutorial sites with examples??

thanx guys!

abhilashars
July 26th, 2005, 07:23 AM
[/URL]
[url]http://www.codeguru.com/Cpp/I-N/ieprogram/article.php/c4377/ (http://www.codeguru.com/Cpp/I-N/ieprogram/article.php/c4377/)
did u went through this?
abhilash

cppmaniac182
July 27th, 2005, 01:02 PM
You could embed the browser ActiveX control in a thin VB application as explained on MSDN "Using the WebBrowser Control" or "HOWTO: Use the WebBrowser Control NewWindow2 Event" and then link the VB client created to a C++ dll where you put all the application logic.

You could also interact directly with an open instance of the IE browser by creating a small simple web server (Google's Desktop Search application is done in this way) or by using OLE automation command.
You find explanation of how to use OLE Always on MSDN "Using the WebBrowser Control".


Bye,