VB.NET Help

12/31/2013 02:26 £vil#1
I have 2 Questions.

1. How would you incorporate some thing like: href= "/forum/general-coding/3041396-vb-net-help.html#post26550060" into a visual basic command?

2. How would you make it Click on an Element with no information except: id="sbmt_60"

Any help would be great.
01/01/2014 04:28 EngelEatos#2
1. if u want to start a browser;

Code:
Process.Start("www.elitepvpers.com/forum/general-coding/3041396-vb-net-help.html#post26550060")
Open the link with your standard browser

Or u do it with a webrequest ([Only registered and activated users can see links. Click Here To Register...]) or a webbrowser

2.
Code:
webbrowser.navigate("-Url-")
//check if webbrowser loading website complete
webbrowser.document.getElementbyId("sbmt_60").InvokeMember("submit")