Open Explorer from VC++ application....
-
Hi !! Iam using Web Browser control to display a web page in my VC++ application. My explorer version is IE7.0 The following code worked fine before installing IE7.O. m_explorerctrl.Navigate("www.yahoo.com",0,NULL,NULL,NULL); Iam getting the following error Cannot find "www.Test.com" . Make sure the path and Internet address is correct. Can any one please help how to solve this problem? Regards,
-
Hi !! Iam using Web Browser control to display a web page in my VC++ application. My explorer version is IE7.0 The following code worked fine before installing IE7.O. m_explorerctrl.Navigate("www.yahoo.com",0,NULL,NULL,NULL); Iam getting the following error Cannot find "www.Test.com" . Make sure the path and Internet address is correct. Can any one please help how to solve this problem? Regards,
Try: m_explorerctrl.Navigate("http://www.yahoo.com",0,NULL,NULL,NULL);
-
Hi !! Iam using Web Browser control to display a web page in my VC++ application. My explorer version is IE7.0 The following code worked fine before installing IE7.O. m_explorerctrl.Navigate("www.yahoo.com",0,NULL,NULL,NULL); Iam getting the following error Cannot find "www.Test.com" . Make sure the path and Internet address is correct. Can any one please help how to solve this problem? Regards,
klvin wrote:
Cannot find "www.Test.com" . Make sure the path and Internet address is correct.
Are you really passing "www.Test.com" as parameter to
Navigate
? Because error seems to say so.Prasad Notifier using ATL | Operator new[],delete[][^]
-
Hi !! Iam using Web Browser control to display a web page in my VC++ application. My explorer version is IE7.0 The following code worked fine before installing IE7.O. m_explorerctrl.Navigate("www.yahoo.com",0,NULL,NULL,NULL); Iam getting the following error Cannot find "www.Test.com" . Make sure the path and Internet address is correct. Can any one please help how to solve this problem? Regards,
Have you tried correcting the URL so that it is well-formed (
**http://**www.yahoo.con
) and see if that makes a difference? I would also try specifying one of theBrowserNavConstants
flags as well. Peace!-=- James
If you think it costs a lot to do it right, just wait until you find out how much it costs to do it wrong!
Avoid driving a vehicle taller than you and remember that Professional Driver on Closed Course does not mean your Dumb Ass on a Public Road!
DeleteFXPFiles & CheckFavorites (Please rate this post!)