I did this just to convert from C# to VB.NET cause i wanted to make one and got stuck lol and i saw Chris's release so this is Mostly his help :P
you will need an HTTPwrapper http://www.mediafire.com/?fora71ljn7em6i7
Code:If TextBox1.Text = "" Then
MessageBox.Show("Please enter a Username")
End If
If wrapper.Post("http://forum.logicalgamers.com/login.php?do=login"=, "vb_login_username=" + TextBox1.Text + "&vb_login_password_hint=Password&vb_login_password=" + TextBox2.Text + "&s=&securitytoken=guest&do=login&vb_login_md5password=&vb_login_md5password_utf=").Contains(("Thank you for logging in,")) Then
MessageBox.Show("Logged in!")
Else : MessageBox.Show("Failed to login")
End If
If TextBox2.Text = "" Then
MessageBox.Show("Please enter a password")
End If