ok so i would like to have a key on my program
i thought using httpwrapper to load a file from my site would be best cuz i chould change the key when i want but i dont know how to use httpwrapper fully any help?
Dim wr As System.Net.HttpWebRequest = DirectCast(System.Net.HttpWebRequest.Create("http://www.evolutiongaming.co.cc/flp/key1.txt"), System.Net.HttpWebRequest)
wr.UserAgent = "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.2) Gecko/20070219 Firefox/2.0.0.2"
Dim res As System.Net.HttpWebResponse = DirectCast(wr.GetResponse(), System.Net.HttpWebResponse)
Dim read(256) As Char
Dim sr As New IO.StreamReader(res.GetResponseStream())
sr.Read(read, 0, 256)
TextBox1.Text = New String(read, 0, 256)
You need to build the code in to do that. So if you want to show form 2 after form 1 based on some condition, you will need to build the if statement and then declare an object as type Form2 and then show it.