IE in my app
-
Hi, Is there a way I could add a browser window - like control, on my dialog? Thank you, AJ
In VC6 IDE, you have option to add ActiveX controls via your resource editor. Take menu Projects->Add to project->Components and Controls will bring a dialog. Double click on Registered ActiveX Controls and select Microsoft Web Browser from the list of controls displayed. This will ask you permission to add support of IE into your application. Select button OK will copy the required header files into your project folder. Now take the resource editor, where you can see a new control appeared for inserting IE as a control. Drag and drop it into your dialog and enjoy.
-
In VC6 IDE, you have option to add ActiveX controls via your resource editor. Take menu Projects->Add to project->Components and Controls will bring a dialog. Double click on Registered ActiveX Controls and select Microsoft Web Browser from the list of controls displayed. This will ask you permission to add support of IE into your application. Select button OK will copy the required header files into your project folder. Now take the resource editor, where you can see a new control appeared for inserting IE as a control. Drag and drop it into your dialog and enjoy.
-
you have use CreateWindow api for doing same in Win32!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
Never mind - my own stupidity is the source of every "problem" - Mixturecheers, Alok Gupta VC Forum Q&A :- I/IV Support CRY- Child Relief and You/xml>
-
you have use CreateWindow api for doing same in Win32!
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
Never mind - my own stupidity is the source of every "problem" - Mixturecheers, Alok Gupta VC Forum Q&A :- I/IV Support CRY- Child Relief and You/xml>
Thank you!! I found another link... http://support.microsoft.com/kb/q192560/
-
Hi, Is there a way I could add a browser window - like control, on my dialog? Thank you, AJ