[VB.NET] LG Auth
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 
you will need an HTTPwrapper http://www.mediafire.com/?fora71ljn7em6i7

you will need an HTTPwrapper http://www.mediafire.com/?fora71ljn7em6i7
[color=blue]If[/color] TextBox1.Text = [color=red]""[/color] [color=blue]Then[/color]
MessageBox.Show([color=red]"Please enter a Username"[/color])
[color=blue]End If[/color]
[color=blue]If[/color] wrapper.Post([color=red]"http://forum.logicalgamers.com/login.php?do=login"[/color], [color=red]"vb_login_username="[/color] + TextBox1.Text + [color=red]"&vb_login_password_hint=Password&vb_login_password="[/color] + TextBox2.Text + [color=red]"&s=&securitytoken=guest&do=login&vb_login_md5password=&vb_login_md5password_utf="[/color]).Contains(([color=red]"Thank you for logging in,"[/color])) [color=blue]Then[/color]
MessageBox.Show([color=red]"Logged in!"[/color])
[color=blue]Else[/color] : MessageBox.Show([color=red]"Failed to login"[/color])
[color=blue]End If[/color]
[color=blue]If[/color] TextBox2.Text = [color=red]"" [/color][color=blue]Then[/color]
MessageBox.Show([color=red]"Please enter a password"[/color])
[color=blue]End If[/color]