Hello,
I'm trying tu use VBA to automate a connection with the BOARD tab in Excel.
I found a manual with macro code sample, but it doesn't work in my case…
Sub DoConnect()
Dim addin As Office.comaddin
Dim automationObject As Object
Set addin = Application.COMAddIns("BoardExcelAddIn")
Set automationObject = addin.Object
If automationObject.Connect("https://gps.laposte.fr/", 9700, Nothing, Nothing, False, True) Then
MsgBox "Connected"
Else
MsgBox "Not Connected"
End If
End Sub
I get an "insufficient memory" pop-up…
I'm Connecting with SSO, but if I use the script :
If automationObject.Connect("https://gps.laposte.fr/", 9700, False, True)
I get an "incorrect procedure" pop-up…
Can you help me with this VBA script ?
Thank You ! :-)
Pierre