Select Web Site Page Field
Hi
I can select the guid when doing a search with
Code:
Me.txtGuidToSearch.Text = "http://www.emailcart.net/airdale/index.php?type=guid&srch=" & Me.txtGuid.Text
System.Diagnostics.Process.Start(Me.txtGuidToSearch.Text)
but i can not get the player name search option to work
Code:
Me.txtNameToSearch.Text = "http://www.emailcart.net/airdale/index.php?type=Player&srch=" & Me.txtName.Text
System.Diagnostics.Process.Start(Me.txtNameToSearch.Text)
Do i need to use key strokes or is the solution in the source code?
http://www.emailcart.net/airdale/index.php?
Re: Select Web Site Page Field
I got the above to work but not this one below from
http://www.hazardaaclan.com/history/...&searchlimit=1
Code:
Me.txtNameToSearch.Text = "http://www.anticheatinc.com/rtstarena/accounthistory.php?searchquery=" & Me.txtName.Text & "submit=Search"
System.Diagnostics.Process.Start(Me.txtNameToSearch.Text)
http://www.anticheatinc.com/rtstarena/accounthistory.php?name=alternate^submit=Search
^alternate is a hacker, as you can see by his guid search
http://www.anticheatinc.com/rtstaren...0submit=Search
Code:
Me.txtGuidToSearch.Text = "http://www.anticheatinc.com/rtstarena/accounthistory.php?guid=" & Me.txtGuid.Text & "submit=Search"
System.Diagnostics.Process.Start(Me.txtGuidToSearch.Text)