Login gtalk and chat using VBA excel

vikas0903

New Member
Joined
Dec 17, 2013
Messages
20
Hi,
I am trying to write VBA code to login and chat using Excel VBA.
I have used Shell command (as shown below) to open gtalk, but not able to figure out from there.
Shell """" & C:\Users\Google\Google Talk\googletalk.exe & """"

Thanks in advance for your help.

Regards!
Vikas
 

Excel Facts

Does the VLOOKUP table have to be sorted?
No! when you are using an exact match, the VLOOKUP table can be in any order. Best-selling items at the top is actually the best.
How about using:


Code:
Call SendKeys("Your UserName", True)
Application.Wait TimeValue("00:00:01")
Call SendKeys("{TAB}", True)
Application.Wait TimeValue("00:00:01")
Call SendKeys("Your Password", True)
Application.Wait TimeValue("00:00:01")
Call SendKeys("{ENTER}", True)
 
Upvote 0
Hi VBA Geek,

Thanks for your help. It worked perfectly.
My next step is to select people added to my gtalk list and chat using Excel. Any pointers, how can I do that?

Regards!
Vikas
 
Upvote 0

Forum statistics

Threads
1,215,334
Messages
6,124,323
Members
449,154
Latest member
pollardxlsm

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top