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...