here is a little Gmail login tool...for your desktop
just enter you name and pass and click login
tested by several Specialist Members ... notibly.. kingvandal , serhat , sss ,Terminal , and faceless master
who came up with what they wanted , help and advice ... anyway here is the final tool
there are 2 login options
normal and lite ...depending on your options
HOW TO USE:
Just enter you name as in :comsec
and pass as in :123456
press login
it will login to your gmail account... 1/4 size window
you can Max the window to full screen....
the password uses ****** input so its not revealed to anyone watching you... etc
here is the source
This will also support html lite gmail version
Private Sub Command2_Click()
'added error handling here so if Max window, will not cause runtime error due to size issue
On Error Resume Next
Form1.Height = Form1.Height + 5900
'this will browse to the gmail html lite version login
web.Navigate "https://www.google.com/accounts/ServiceLogin?service=mail&passive=true&continue=http%3A%2F%2Fgmail.google.com%2Fgmail%3Fui%3Dhtml%26zy%3Dn"
'complete load then do events
Do Until wb.ReadyState = READYSTATE_COMPLETE
DoEvents
Loop
On Error Resume Next
'this will parse the form and add your inputs
web.Document.Forms(0).email.Value = "" + Text2.Text
web.Document.Forms(0).passwd.Value = "" + Text3.Text
web.Document.Forms(0).submit
End Sub
Private Sub Form_Resize()
On Error Resume Next
'resize as you seem fit to suit your desktop options
Frame1.Width = Form1.Width - 350
Frame2.Width = Form1.Width - 350
web.Width = Form1.Width - 100
web.Height = Form1.Height - 1600
On Error GoTo 0
End Sub
Private Sub Form_Load()
'start up height and masked password box... Serhat beat me to it;)
Form1.Height = Form1.Height
Text3.PasswordChar = "*"
End Sub
Private Sub Command1_Click()
'see command2 comments
On Error Resume Next
Form1.Height = Form1.Height + 5900
'this is the Normal Gmail url... differs from above lite
web.Navigate "https://www.google.com/accounts/ServiceLogin?service=mail&passive=true&continue=http%3A%2F%2Fgmail.google.com%2Fgmail%3Fui%3Dhtml%26zy%3Dl"
Do Until wb.ReadyState = READYSTATE_COMPLETE
DoEvents
Loop
On Error Resume Next
web.Document.Forms(0).email.Value = "" + Text2.Text
web.Document.Forms(0).passwd.Value = "" + Text3.Text
web.Document.Forms(0).submit
End Sub

