Click to See Complete Forum and Search --> : ShellExecute Question???


YesStout
April 2nd, 1999, 07:31 PM
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??

Ajay Kalra
April 2nd, 1999, 08:00 PM
Following should do it:

ShellExecute(NULL,"open", "http://www.codeguru.com",
NULL, NULL, SW_SHOWNORMAL);


Ajay

YesStout
April 2nd, 1999, 08:10 PM
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.