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

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -