Using ShellExecute what do I put in for the file name parameter to to have
the browser start and open the file that is currently open in my HTML editor??
Printable View
Using ShellExecute what do I put in for the file name parameter to to have
the browser start and open the file that is currently open in my HTML editor??
Following should do it:
ShellExecute(NULL,"open", "http://www.codeguru.com",
NULL, NULL, SW_SHOWNORMAL);
Ajay
I may not have phrased the question correctly. I don't want to open this web address. I want to open whatever file is in the the child window of the HTML editor I am building.