|
|||||||||||||||||||||||
|
|||||||||||||||||||||||
|
Announcements
Chapters
Services
Feature Zones
|
IntroductionGenerally, when hosting the WebBrowser Control in our MFC application, we call We also invoke This article will introduce an innovative but simple way to invoke the MODAL "Add To Favorite" dialog and MODAL "Import/Export Wizard" dialog in your own web browser. BackgroundThe idea comes from the ...... // Show shortcut menu int iSelection = ::TrackPopupMenu(hMenu, TPM_LEFTALIGN | TPM_RIGHTBUTTON | TPM_RETURNCMD, ppt->x, ppt->y, 0, hwnd, (RECT*)NULL); // Send selected shortcut menu item command to shell LRESULT lr = ::SendMessage(hwnd, WM_COMMAND, iSelection, NULL); ...... Using the codeSome command messages are handled by the "Internet Explorer_Server" window while some others are handled by its parent "Shell DocObject View" window. Therefore, the first thing is to get the Window Handle of the two windows from your //////////////////////////////////////////////////////////////// // MSDN Magazine -- August 2003 // If this code works, it was written by Paul DiLascia. // If not, I don't know who wrote it. // Compiles with Visual Studio .NET on Windows XP. Tab size=3. // // --- // This class encapsulates the process of finding a window with a given class name // as a descendant of a given window. To use it, instantiate like so: // // CFindWnd fw(hwndParent,classname); // // fw.m_hWnd will be the HWND of the desired window, if found. // class CFindWnd { private: ////////////////// // This private function is used with EnumChildWindows to find the child // with a given class name. Returns FALSE if found (to stop enumerating). // static BOOL CALLBACK FindChildClassHwnd(HWND hwndParent, LPARAM lParam) { CFindWnd *pfw = (CFindWnd*)lParam; HWND hwnd = FindWindowEx(hwndParent, NULL, pfw->m_classname, NULL); if (hwnd) { pfw->m_hWnd = hwnd; // found: save it return FALSE; // stop enumerating } EnumChildWindows(hwndParent, FindChildClassHwnd, lParam); // recurse return TRUE; // keep looking } public: LPCSTR m_classname; // class name to look for HWND m_hWnd; // HWND if found // ctor does the work--just instantiate and go CFindWnd(HWND hwndParent, LPCSTR classname) : m_hWnd(NULL), m_classname(classname) { FindChildClassHwnd(hwndParent, (LPARAM)this); } }; void CDemoView::InvokeShellDocObjCommand(int nID) { CFindWnd FindIEWnd( m_wndBrowser.m_hWnd, "Shell DocObject View"); ::SendMessage( FindIEWnd.m_hWnd, WM_COMMAND, MAKEWPARAM(LOWORD(nID), 0x0), 0 ); } void CDemoView::InvokeIEServerCommand(int nID) { CFindWnd FindIEWnd( m_wndBrowser.m_hWnd, "Internet Explorer_Server"); ::SendMessage( FindIEWnd.m_hWnd, WM_COMMAND, MAKEWPARAM(LOWORD(nID), 0x0), 0 ); } Command IDs handled by the "Internet Explorer_Server" window: #define ID_IE_CONTEXTMENU_ADDFAV 2261 #define ID_IE_CONTEXTMENU_VIEWSOURCE 2139 #define ID_IE_CONTEXTMENU_REFRESH 6042 Command IDs handled by the "Shell DocObject View" window: #define ID_IE_FILE_SAVEAS 258 #define ID_IE_FILE_PAGESETUP 259 #define ID_IE_FILE_PRINT 260 #define ID_IE_FILE_NEWWINDOW 275 #define ID_IE_FILE_PRINTPREVIEW 277 #define ID_IE_FILE_NEWMAIL 279 #define ID_IE_FILE_SENDDESKTOPSHORTCUT 284 #define ID_IE_HELP_ABOUTIE 336 #define ID_IE_HELP_HELPINDEX 337 #define ID_IE_HELP_WEBTUTORIAL 338 #define ID_IE_HELP_FREESTUFF 341 #define ID_IE_HELP_PRODUCTUPDATE 342 #define ID_IE_HELP_FAQ 343 #define ID_IE_HELP_ONLINESUPPORT 344 #define ID_IE_HELP_FEEDBACK 345 #define ID_IE_HELP_BESTPAGE 346 #define ID_IE_HELP_SEARCHWEB 347 #define ID_IE_HELP_MSHOME 348 #define ID_IE_HELP_VISITINTERNET 349 #define ID_IE_HELP_STARTPAGE 350 #define ID_IE_FILE_IMPORTEXPORT 374 #define ID_IE_FILE_ADDTRUST 376 #define ID_IE_FILE_ADDLOCAL 377 #define ID_IE_FILE_NEWPUBLISHINFO 387 #define ID_IE_FILE_NEWCORRESPONDENT 390 #define ID_IE_FILE_NEWCALL 395 #define ID_IE_HELP_NETSCAPEUSER 351 #define ID_IE_HELP_ENHANCEDSECURITY 375 The following code demonstrates how to invoke the MODAL "Add To Favorite" dialog. void CDemoView::OnFavAddtofav()
{
InvokeIEServerCommand(ID_IE_CONTEXTMENU_ADDFAV);
}
Points of InterestYou know, to keep working all the night, and finally you find the answer. I call this happiness!
|
||||||||||||||||||||||