Web Custom Control
Posted
by Mausau Mausau
on January 25th, 2002
Environment: Microsoft Visual C++
Web Custom Control
Here is an easy to use web control which can be created using CreateWindow() or as a CONTROL in a dialog template script.
InitWebCtrl();
hwndWebCtrl = CreateWindow(
"WebCtrl32",
"http://www.codeguru.com/",
WS_CHILD | WS_VISIBLE,
0, 0, 200, 100,
hwndParent,
(HMENU) IDC_WEBCTRL,
hInstance,
NULL );
--- or ---
CONTROL "", IDC_WEBCTRL, "WebCtrl32",0x0,8,8,264,160
case WM_INITDIALOG
SetDlgItemText( hdlg,
IDC_WEBCTRL,
"http://www.codeguru.com/" );
break;

Comments
IE Tool Bar
Posted by Legacy on 01/05/2004 12:00amOriginally posted by: charles Godwin
Is there any way to enable the IE toolbar in this window?
ReplyThank you so much!!
Posted by Legacy on 07/03/2003 12:00amOriginally posted by: Je Jung Min
It's very useful for me
Reply
Exactly what I've looked for
Posted by Legacy on 06/25/2003 12:00amOriginally posted by: Sonin Nickolay
It saves me a lot of time and brain :) Thanks for this solution.
Replyhow response WM_KEYDOWN message,
Posted by Legacy on 12/12/2002 12:00amOriginally posted by: sosjudy
ReplyJust what i was looking for... Thanks a ton
Posted by Legacy on 07/24/2002 12:00amOriginally posted by: ape
Just what i was looking for... Thanks a ton
I just added WS_DISABLED in the CreateWindow style, to avoid the mouse and key board interaction. Just to have a control to show HTML pages.
It helps me in creating dialog boxes with customizable graphics..
Good Work
Reply
Beginner question..
Posted by Legacy on 05/09/2002 12:00amOriginally posted by: Beginner
How do I disable right-click??
Replyso simple & useful
Posted by Legacy on 01/25/2002 12:00amOriginally posted by: bryan choi
i'll make a job with this.
Replywith adding IDocHostUIHandler.
Looks pretty nice...
Posted by Legacy on 01/25/2002 12:00amOriginally posted by: BN
Nice job.
Reply