Create a Google Calendar event with VBA (1 Viewer)

brokkel

Registered User.
Local time
Today, 18:08
Joined
Aug 13, 2008
Messages
10
I have searched the Internet but have not found anything worthwile.
Has anyone any idea whether this can be achieved?

Many thanks!
 

brokkel

Registered User.
Local time
Today, 18:08
Joined
Aug 13, 2008
Messages
10
One thing I found already is how to log on to the calendar:

Code:
Dim HTMLDoc As HTMLDocument
Dim oBrowser As InternetExplorer
Dim oHTML_Element As IHTMLElement
Dim sURL As String
On Error GoTo Err_Clear
sURL = "url"
Set oBrowser = New InternetExplorer
oBrowser.Silent = True
oBrowser.timeout = 60
oBrowser.Navigate sURL
oBrowser.Visible = true
Do
' Wait till the Browser is loaded
Loop Until oBrowser.ReadyState = READYSTATE_COMPLETE
Set HTMLDoc = oBrowser.Document
HTMLDoc.all.email.Value = "enteremail"
HTMLDoc.all.passwd.Value = "*******"
For Each oHTML_Element In HTMLDoc.getElementsByTagName("input")
If oHTML_Element.type = "submit" Then oHTML_Element.Click: Exit For
Next
' oBrowser.Refresh ' Refresh If Needed
Err_Clear:
If Err <> 0 Then
Err.Clear
Resume Next
End If
 
Last edited by a moderator:

brokkel

Registered User.
Local time
Today, 18:08
Joined
Aug 13, 2008
Messages
10
anyone can add anything to this? Would be great :)
 

Dmak

Registered User.
Local time
Today, 17:08
Joined
May 10, 2012
Messages
65
Going to have to bump this. I too have looked around for a solution but nothing solid yet.

Has anyone got anything working with regard to this?
 

GBalcom

Much to learn!
Local time
Today, 09:08
Joined
Jun 7, 2012
Messages
459
3 years later....I'll bump this thread, I'm having the same problem. Has anyone solved this?

I've been using CData's ODBC Link, but for whatever reason it's giving me fits. I'd like to find another solution. I don't have Outlook.
 

GBalcom

Much to learn!
Local time
Today, 09:08
Joined
Jun 7, 2012
Messages
459
I don't have an account on Utteraccess.com. I'll create one, but not sure it will let me download anything without a few posts under my belt there.
 

theDBguy

I’m here to help
Staff member
Local time
Today, 09:08
Joined
Oct 29, 2018
Messages
21,449
I don't have an account on Utteraccess.com. I'll create one, but not sure it will let me download anything without a few posts under my belt there.
I see. Let me know if you run into any issues, but we probably should continue the discussion there. I'll keep an eye for your post there. Cheers!
 

Users who are viewing this thread

Top Bottom