I'm working on some code to send calendar items to Groupwise from my Access XP database. According to the Groupwise API, early binding is preferable in almost all cases. As nearly as I can tell, here's how the API says to declare a Groupwise application object using early binding:
However, this code bombs with the message "ActiveX control cannot create the object".
Late binding works, though:
But this ALSO works:
Using the third option ACTS like early binding, because the Intellisense works when entering methods and such, but I'd like to be sure. Can anyone shed any light on this? Thanks!
Ken S.
Code:
Dim objGWApp As Application3
Set objGWApp = New Application3
However, this code bombs with the message "ActiveX control cannot create the object".
Late binding works, though:
Code:
Dim objGWApp As Object
Set objGWApp = CreateObject("NovellGroupwareSession")
But this ALSO works:
Code:
Dim objGWApp As Application3
Set objGWApp = CreateObject("NovellGroupwareSession")
Using the third option ACTS like early binding, because the Intellisense works when entering methods and such, but I'd like to be sure. Can anyone shed any light on this? Thanks!
Ken S.