> I'm having an multithreaded MFC application with win32 interface VC++ 7. I
> need to add one more feature in this, so a particular web site can be
> opened
> with in a window of this application. I don't allow users to go out of
> this
> application so want to use an internal window/frame using dialog in VC++.
You want to host the web browser control.
An MFC solution is here:
http://msdn.microsoft.com/library/default.asp?url=/workshop/browser/webbrowser/t
utorials/wbtutorial.asp
> I want my users to click on the button and they can access that web page
> fully in a small frame. No address bar is allowed to enter new address.
It's been a while since I had to do this, but IIRC, it is a simple matter of
setting properties to show and hide what you like. If you get stuck look up
the IWebBrowser2 interface in the docs.
Regards,
Will