<vb6>HELP WITH LOGIN???<vb6>

Reply to topic Page 1 of 1 [ 2 posts ]
Author Message

Offline russellhope

Gold Member


User avatar


Joined: Mon Aug 18, 2008 11:43 pm

Posts: 289

PostPosted: Sun Oct 12, 2008 10:18 pm   Post subject: <vb6>HELP WITH LOGIN???<vb6>   

ok, i found this code on google.. which i reconise as bennyboys. i have tweaked it a bit but i can get it to work dft001 im using vb6 so work around that :bigsmile:

Private Sub cmdok_Click()
If Txtusername.Text = "" Then
lbstatus.Caption = "Please Enter Username"
Exit Sub
End If


If txtpassword.Text = "" Then
lbstatus.Caption = "Please Enter Password"
Exit Sub
End If

lbstatus.Caption = "Please wait...."
Navigate "http://www.bebo.com/SignOut.jsp"


Form1.Show: DoEvents
Form1.Navigate "http://www.bebo.com/SignIn.jsp"
lbstatus.Caption = "Signing in..."
   
    DoEvents
    While Form2.wb.Busy = True
        DoEvents
    Wend
   
   
    Form1.wb.Document.All("Password").Value = (Form1.txtpassword.Text)
    Form1.wb.Document.All("EmailUsername").Value = (Txtusername.Text)
    Form1.wb.Document.All("RememberMe").Click
    Form1.wb.Document.All("SignIn").Click

    DoEvents
    While frmLogin.wb.Busy = True
        DoEvents
   frmLogin.lbstatus.Caption = "Logging in " & (Form1.Txtusername.Text)
   lbstatus.Caption = "Logged in"

Me.Hide
Form1.Show

Wend
End Sub

_________________

:D Paoblo - Magicide :D

Image
Top Profile E-mail 

Offline Tree

Teh Whiigar


User avatar


Joined: Mon Nov 26, 2007 12:24 pm

Posts: 1582

Location: Australia

PostPosted: Sat Oct 18, 2008 1:09 am   Post subject: Re: <vb6>HELP WITH LOGIN???<vb6>   

Just to help you out.
You need the following
textbox named txtusername
label named lbstatues
a second form, called form2
webbrowser called wb
and u need to learn how to navigate
wb.navigate("http://www.sampleurl.com")

^ would be the code to navigate for you.

_________________
Wayne Rooney.


http://i42.tinypic.com/2zsmwpx.jpg
Top Profile E-mail 
Display posts from previous:  Sort by  
Reply to topic Page 1 of 1 [ 2 posts ]

 
 •  

Who is online
Users browsing this forum: No registered users and 1 guest

You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum