ExcelPro
Would you like to react to this message? Create an account in a few clicks or log in to continue.
Search
 
 

Display results as :
 


Rechercher Advanced Search

Latest topics
» How to Unprotect an excel sheet without password
Automatically login to Gmail from excel using VBA EmptyWed May 21, 2014 8:04 pm by Admin

» Microsoft Office 2013 full version free download
Automatically login to Gmail from excel using VBA EmptyTue May 20, 2014 6:02 pm by Admin

» Automatically login to Gmail from excel using VBA
Automatically login to Gmail from excel using VBA EmptySun May 18, 2014 1:41 pm by ranjithkumar8352

» Internet download manager lifetime crack download
Automatically login to Gmail from excel using VBA EmptySun May 18, 2014 1:32 pm by Admin

» Create In-cell bar charts in Excel
Automatically login to Gmail from excel using VBA EmptyThu May 15, 2014 6:41 am by ranjithkumar8352

» Concatenate several cells with a comma
Automatically login to Gmail from excel using VBA EmptyWed May 14, 2014 6:00 pm by ranjithkumar8352

» New users please read this.
Automatically login to Gmail from excel using VBA EmptyTue May 13, 2014 11:16 pm by Admin

May 2024
MonTueWedThuFriSatSun
  12345
6789101112
13141516171819
20212223242526
2728293031  

Calendar Calendar

Keywords

excel  password  


Automatically login to Gmail from excel using VBA

2 posters

Go down

Automatically login to Gmail from excel using VBA Empty Automatically login to Gmail from excel using VBA

Post by ranjithkumar8352 Thu May 15, 2014 5:53 am

Hello everyone,

I would like to share a topic which has been a question mark for many excel users - how to login to gmail automatically from excel using VBA and the solution is here..

This VBA code is used to login to gmail from Internet explorer.

In my next post i will be posting how to use chrome or firefox for this and it requires installation of a small software, The reason behind why software is to be installed for chrome & firefox and not required for Internet explorer is - IE and Excel are microsoft softwares and so they have inbuilt controls to each other and contrary in case of firefox and chrome.

Here is the VBA code i used

Code:
Dim HTMLDoc As HTMLDocument
Dim MyBrowser As InternetExplorer
 Sub AutoLogin()
 Dim MyHTML_Element As IHTMLElement
 Dim MyURL As String
 On Error GoTo Err_Clear
 MyURL = "http://gmail.com"
 Set MyBrowser = New InternetExplorer
 MyBrowser.Silent = True
 MyBrowser.navigate MyURL
 MyBrowser.Visible = True
 Do
 Loop Until MyBrowser.readyState = READYSTATE_COMPLETE
 Set HTMLDoc = MyBrowser.document
 HTMLDoc.all.Email.Value = Sheets(1).Range("B9").Value
 HTMLDoc.all.Passwd.Value = Sheets(1).Range("B11").Value
 For Each MyHTML_Element In HTMLDoc.getElementsByTagName("input")
 If MyHTML_Element.Type = "submit" Then MyHTML_Element.Click: Exit For
 Next
Err_Clear:
 If Err <> 0 Then
 Err.Clear
 Resume Next
 End If
 End Sub
Note : B9 and B11 are the cells in which Email and password are entered

We can alter this code to make automation to other sites, Please check the attached file for more info.

Regards,
Ranjith
Attachments
Automatically login to Gmail from excel using VBA Attachment
Automatic login to gmail.xlsm (70 Kb) Downloaded 651 times
ranjithkumar8352
ranjithkumar8352

Posts : 5
Join date : 2014-05-14

Back to top Go down

Automatically login to Gmail from excel using VBA Empty Thanks a lot

Post by David_cool Thu May 15, 2014 11:05 am

Thanks a lot ranjith, I've been searching for this   bounce  Thank you and waiting to see how it works in chrome  cheers

David_cool
Guest


Back to top Go down

Automatically login to Gmail from excel using VBA Empty Re: Automatically login to Gmail from excel using VBA

Post by ranjithkumar8352 Thu May 15, 2014 4:45 pm

David_cool wrote:Thanks a lot ranjith, I've been searching for this   bounce  Thank you and waiting to see how it works in chrome  cheers

With pleasure David  Smile
ranjithkumar8352
ranjithkumar8352

Posts : 5
Join date : 2014-05-14

Back to top Go down

Automatically login to Gmail from excel using VBA Empty Re: Automatically login to Gmail from excel using VBA

Post by shyam chegu Sat May 17, 2014 11:18 am

Thanks ranjith,
this is useful for me....
please come out with more of this kind..

shyam chegu

Posts : 1
Join date : 2014-05-17

Back to top Go down

Automatically login to Gmail from excel using VBA Empty Re: Automatically login to Gmail from excel using VBA

Post by ranjithkumar8352 Sun May 18, 2014 1:41 pm

shyam chegu wrote:Thanks ranjith,
this is useful for me....
please come out with more of this kind..

With pleasure shyam Smile
ranjithkumar8352
ranjithkumar8352

Posts : 5
Join date : 2014-05-14

Back to top Go down

Automatically login to Gmail from excel using VBA Empty Re: Automatically login to Gmail from excel using VBA

Post by Sponsored content


Sponsored content


Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum