Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

web browser engine to embed in win32 program

I need to put in simple Win32 program kind of ability to view web pages. It must be just window with page in it, no browser adress bars or other elements, just working web page in win32 window without any standart browser elements.
It seems that i need some kind of project, that gives me some way to embed chromium engine (chromium most likely) in to win32 api, and, obviously, give the full controls over the messages and other stuff that going to that "browser" window. I was looking at CEF project http://code.google.com/p/chromiumembedded/ , but will it fit, or any other suggestions?

like image 661
Max Yari Avatar asked Sep 18 '25 12:09

Max Yari


1 Answers

My (unfortunate) suggestion is to use IWebBrowser2 if you just want to use the Internet Explorer control.

Example can be seen here: http://www.codeproject.com/Articles/16559/Launch-and-control-MSIE-using-IWebBrowser2

like image 199
Mike Weir Avatar answered Sep 21 '25 08:09

Mike Weir