How can i jump to a webpages anchor <a> tag using ShellExecute in C++? -
i'm opening webpage succesfully in manner, example
shellexecute(null, "open", "http://www.google.com", null, null, sw_shownormal);
however need able jump anchor tag, 'mypage.html#middle'. when append end of url string, webpage opens @ file specified, , won't jump tag, nor in address bar.
thanks.
okay, i've managed achieve using different technique. when using method have define browser open with, might considered issue concerned deploying large number of users (fortunately, in case isn't true).
shellexecute(null, "open", "iexplore", urlstring, null, sw_shownormal);
where 'urlstring' web address, anchor @ end.
thanks all.
Comments
Post a Comment