How can I go to bind the <a> tag of web pages using ShellExecute in C ++?
I am currently opening a webpage this way e.g.
ShellExecute(NULL, "open", "http://www.google.com", NULL, NULL, SW_SHOWNORMAL);
However, I really need to make the transition to the anchor tag, for example 'mypage.html # middle'. When I just add it to the end of the URL bar, the web page only opens in the specified file and will not jump to the tag and will not be in the address bar.
Thank.
+3