-
Topic
-
Hi,
I am trying to retrieve the FID for a mailbox using the AccountProperty(9) property of the Account object. This works fine for the root mailbox that a user logs into, but fails when the user is proxied into another mailbox. An error number of -2147352567 and description “Error retrieving GroupWise FID” is returned. I have added error checking to prevent the script failing. My code snippet is reproduced below:
Set objAcc = client.clientstate.currentaccount
strTemp=””
On Error Resume Next
strTemp=objAcc.AccountProperty(9)
If strTemp=”” Then strTemp=”Could not be retrieved. Error: ” & Err.Number & ” (” & Err.Description & “)”
On Error Goto 0The other property constants appear to work Ok (they certainly do not generate an error).
I am using Formativ 2.0.2 Beta and GroupWise 8.0.1 client/agents.
Regards
Dave
- You must be logged in to reply to this topic.