Navigate function of a CWebBrowser class
-
hello to all, i want to use "Navigate" function of CWebBrowser class which i have added as an activex control in my programm, this function should get called after clicking a perticular button of a dialog box.can anybody help me plz how to do it. Anay Kulkarni
-
hello to all, i want to use "Navigate" function of CWebBrowser class which i have added as an activex control in my programm, this function should get called after clicking a perticular button of a dialog box.can anybody help me plz how to do it. Anay Kulkarni
CString CPPath = "http://codeproject.com"; m_Browser.Navigate( CPPath, NULL, NULL, NULL, NULL );
-
CString CPPath = "http://codeproject.com"; m_Browser.Navigate( CPPath, NULL, NULL, NULL, NULL );
CString CPPath = "http://codeproject.com"; m_Browser.Navigate( CPPath, NULL, NULL, NULL, NULL ); i tried this, but it is giving me an error, i think it is asking for a pointer rather that "NULL" to a frame which we should create to display the web site, how to do it? Anay
-
CString CPPath = "http://codeproject.com"; m_Browser.Navigate( CPPath, NULL, NULL, NULL, NULL ); i tried this, but it is giving me an error, i think it is asking for a pointer rather that "NULL" to a frame which we should create to display the web site, how to do it? Anay
-
hello to all, i want to use "Navigate" function of CWebBrowser class which i have added as an activex control in my programm, this function should get called after clicking a perticular button of a dialog box.can anybody help me plz how to do it. Anay Kulkarni
first create the control. m_Browser.Create(); then call Navigate() VARIANT flags; flags.intVal = navNoHistory; VARIANT TargetFrameName; TargetFrameName.intVal = _BLANK; m_Browser.Navigate("http://www.codeproject.com", &flags, &TargetFrameName, NULL, NULL);
-
CString CPPath = "http://codeproject.com"; m_Browser.Navigate( CPPath, NULL, NULL, NULL, NULL ); i tried this, but it is giving me an error, i think it is asking for a pointer rather that "NULL" to a frame which we should create to display the web site, how to do it? Anay
u better go for shellExecute functon try this
-
u better go for shellExecute functon try this
yes! it worked, thanks a lot sir. Anay