VincentP
Programmer
- Apr 1, 2001
- 116
I would like to have my program open an html file at a given anchor point. For example: index.html#stuff
ShellExecute( NULL, "open", "index.html", NULL, NULL, SW_SHOWNORMAL );
works fine, but
ShellExecute( NULL, "open", "index.html#stuff", NULL, NULL, SW_SHOWNORMAL );
does not, since Windows does not find the file "index.html#stuff"...
The file is local. It works fine on internet files if I "execute"
Any ideas?
Vincent
ShellExecute( NULL, "open", "index.html", NULL, NULL, SW_SHOWNORMAL );
works fine, but
ShellExecute( NULL, "open", "index.html#stuff", NULL, NULL, SW_SHOWNORMAL );
does not, since Windows does not find the file "index.html#stuff"...
The file is local. It works fine on internet files if I "execute"
Any ideas?
Vincent