26 Nov 2012

Count the unread messages in the Gmail Inbox

How to Count the unread messages in the Gmail Inbox

Systemutil.Run "IEXPLORE.EXE","www.gmail.com"
Browser("Gmail: Email from Google").Page("Gmail: Email from Google").WebEdit("Email").Set "xxxxxxxxxxx"
Browser("Gmail: Email from Google").Page("Gmail: Email from Google").WebEdit("Passwd").Set "yyyyyyyy"
Browser("Gmail: Email from Google").Page("Gmail: Email from Google").WebButton("Sign in").Click
x=Browser("Gmail: Email from Google").Page("Gmail - Inbox").Link("text:=Inbox.*","html tag:=A").GetROProperty("text")
msgbox x
L=len(x)
For i=1 to L
    M=mid(x,i,1)
    If IsNumeric(M) Then
        N=N&" "&M
        else
        temp=temp
    End If
Next
Msgbox N

No comments:

Post a Comment