-
Rick Hiebert
- PowerBuilder
- Friday, 21 March 2025 09:13 PM UTC
This is the code Copilot generated for me:
// Declare variables
OLEObject oleMailService
integer li_rc
// Create OLEObject for EWS
oleMailService = CREATE OLEObject
li_rc = oleMailService.ConnectToNewObject("MSExchangeWebServices.ExchangeService")
// Check connection status
IF li_rc = 0 THEN
MessageBox("Connection Status", "Connected to Exchange Web Services")
ELSE
MessageBox("Connection Status", "Failed to connect to Exchange Web Services. Error: " + String(li_rc))
END IF
// Disconnect and clean up
oleMailService.DisconnectObject()
DESTROY oleMailService
I'm getting -2 from the ConnectToNewObject.
Any Ideas?
Find Questions by Tag
Helpful?
If a reply or comment is helpful for you, please don’t hesitate to click the Helpful button. This action is further confirmation of their invaluable contribution to the Appeon Community.