微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

从Excel向viber发送消息

如何解决从Excel向viber发送消息

我想使用vba excel将excel与viber连接起来,但是在这代码中,viber不会使用(ENTER)来打开对话以将消息发送到联系人中选定的电话号码。此代码在whatsapp中有效,但是不在viber中,我如何使此代码在viber中工作?

Dim contact As String

Dim text As String

u = Application.WorksheetFunction.CountA(Sheets("Sheet1").Range("a:a")) - 2

ActiveWorkbook.FollowHyperlink Address:="C:\Users\Acer\AppData\Local\Viber\Viber.exe"

Application.Wait (Now + TimeValue("00:00:12"))



For I = 0 To u

contact = Sheets("Sheet1").Range("b2").Offset(I,0).Value

text = Sheets("Sheet1").Range("c2").Offset(I,0).Value

Call SendKeys("{TAB}",True)

Application.Wait (Now + TimeValue("00:00:05"))

Call SendKeys(contact,True)

Application.Wait (Now + TimeValue("00:00:05"))

Call SendKeys("{ENTER}",True)

Application.Wait (Now + TimeValue("00:00:05"))

Call SendKeys(text,True)

Application.Wait (Now + TimeValue("00:00:01"))

Call SendKeys("{ENTER}",True)

Application.Wait (Now + TimeValue("00:00:01"))

Call SendKeys("{TAB}",True)

Next I

请告诉我我在做什么错了。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。