how to start default broswer?
-
Hi, I am new to VC++. I tried to find out how to start up the default broswer with an URL within SDI. I google and search this site but without much luck. I believed I need to make a system call but not sure how to do it with VC++. Any suggestions would be appreciated. Kevin
-
Hi, I am new to VC++. I tried to find out how to start up the default broswer with an URL within SDI. I google and search this site but without much luck. I believed I need to make a system call but not sure how to do it with VC++. Any suggestions would be appreciated. Kevin
-
Hi, I am new to VC++. I tried to find out how to start up the default broswer with an URL within SDI. I google and search this site but without much luck. I believed I need to make a system call but not sure how to do it with VC++. Any suggestions would be appreciated. Kevin
kevincwong wrote: I am new to VC++. I tried to find out how to start up the default broswer with an URL
try this
ShellExecute(NULL,"open","http://www.codeproject.com",NULL,NULL,SW_SHOWNORMAL);
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV
-
kevincwong wrote: I am new to VC++. I tried to find out how to start up the default broswer with an URL
try this
ShellExecute(NULL,"open","http://www.codeproject.com",NULL,NULL,SW_SHOWNORMAL);
"Opinions are neither right nor wrong. I cannot change your opinion. I can, however, change what influences your opinion." - David Crow
cheers, Alok Gupta VC Forum Q&A :- I/ IV
Wow! Great! It works exactly what I want. Thanks, Kevin