I have only just started coding in C++, yesterday actually... and i was hoping you mite be able to help.
I have written a small windows application, and setup a menu and everything... but i would like to create a mini web browser within the application, as opposed to writting a whole application. Obviously, the user would be able to navigate through the website, but only that website.
Any one point me in the right direction?
Cheers!!!
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Why wouldn't you just use an existing web browser and launch it from your application?
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Anonymous
-
2007-11-19
The easiest way to do this is not to use Dev-C++ at all unfortunately (For Dev that is not you). Windows Forms has a WebBrowser control which should exactly meet your requirements. Using Windows Forms implies .NET and Dev-C++ does not support .NET development. The free VC++ 2005 Express Edition does so you might consider that.
Hi,
I have only just started coding in C++, yesterday actually... and i was hoping you mite be able to help.
I have written a small windows application, and setup a menu and everything... but i would like to create a mini web browser within the application, as opposed to writting a whole application. Obviously, the user would be able to navigate through the website, but only that website.
Any one point me in the right direction?
Cheers!!!
Ah, many thanks! works great!
Why wouldn't you just use an existing web browser and launch it from your application?
The easiest way to do this is not to use Dev-C++ at all unfortunately (For Dev that is not you). Windows Forms has a WebBrowser control which should exactly meet your requirements. Using Windows Forms implies .NET and Dev-C++ does not support .NET development. The free VC++ 2005 Express Edition does so you might consider that.
http://msdn2.microsoft.com/en-us/library/Aa752044.aspx
http://msdn2.microsoft.com/en-us/library/system.windows.forms.webbrowser.aspx
Clifford