@Eternal: Can you give me the download for the HTTP Wrapper you used?
EDIT: Alright, I found another HTTP Wrapper download. Tried it, and still can't get anything trk.
I now tried a Solia login, but I couldn't even do that. Maybe I'm missing something? This is what I have for the Solia one.
PHP Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim strHTML As String
If TextBox1.Text = vbNullString Or TextBox2.Text = vbNullString Then
MessageBox.Show("You left the username or/and password field blank." & vbNewLine & "Try again..")
Exit Sub
End If
TextBox1.Enabled = False
TextBox2.Enabled = False
Button1.Enabled = False
strHTML = Wrapper.PostWrapper("http://soliaonline.com/community/ucp.php?mode=login", "username=" & TextBox1.Text & "&password=" & TextBox2.Text & "&redirect=index.php")
If (InStr(1, strHTML, "You have been successfully")) Then
MessageBox.Show("Logged in!!")
Else
MessageBox.Show("Login Failed")
TextBox1.Enabled = True
TextBox2.Enabled = True
Button1.Enabled = True
End If
End Sub
Results 1 to 21 of 21
Thread: VB.NET HttpWrapper
Hybrid View
- 31 Dec. 2009 05:46am #1
Last edited by Zeth; 31 Dec. 2009 at 08:50am.
If you would like a Lockerz.com invite, simply PM me your email, and I'd be happy to invite you.
- 31 Dec. 2009 03:38pm #2
Hmmm... the bot I made works for me.
Don't know whats up with you guys...
XD Yeah a little mess up in the first few posts....
There is some other error in the code right now...
I have an account, signed up earier so that I could use Live headers on there site and test it... (Works for me. I will take another look at it though...)
Don't know if I am supposed to give em out...
Ps: You would have to upgrade to vb8 to use those wrappers (Which I highly suggest you do...)
Can you save the live headers of the login to solia? I just don't want to have to sign up...
How about making a gaia one first... They are very simple and there are plenty of guides for it...
I am here to help if you need it...
EDIT:
Code didn't work because they updated last night....Last edited by Eternal Darkness; 31 Dec. 2009 at 04:53pm.