P
paresh
Hi,
I am using below code to resolve the "userName". It works absolutely fine
for 99% users but cannot resolve some of our users. Could anyone please
suggest what could be wrong? I am not sure but it has to do something with
their stored Outlook information?
Set rcp = Application.Session.CreateRecipient(userName)
rcp.Resolve
If NOT rcp.Resolved = True Then
MsgBox "User " & """" & userName & """ could not be resolved."
End If
While researching on this issue, I ran into below scenario that might be the
reason? It happens when I have below type of user name entries. When I try to
resolve "foo, user", it doesn't get resolved but "foo, user(dept1)" gets
resolved successfully.
foo, user
foo, user(dept1)
Please note that both of above users are different. Do you think any
connection with these entries and naming resolution?
Moreover, I tried doing it from Outlook look up but I didn't see any
difference. For example, when I copy "foo user" in To list, and press Cntl+K,
it gives me pop-up for selecting between "foo user" and "foo user(dept1)".
The same pop up appears when I do look up for "foo user(dept1)". Not sure
where is the issue. I might need to check how resolve query works.
Thanks.
I am using below code to resolve the "userName". It works absolutely fine
for 99% users but cannot resolve some of our users. Could anyone please
suggest what could be wrong? I am not sure but it has to do something with
their stored Outlook information?
Set rcp = Application.Session.CreateRecipient(userName)
rcp.Resolve
If NOT rcp.Resolved = True Then
MsgBox "User " & """" & userName & """ could not be resolved."
End If
While researching on this issue, I ran into below scenario that might be the
reason? It happens when I have below type of user name entries. When I try to
resolve "foo, user", it doesn't get resolved but "foo, user(dept1)" gets
resolved successfully.
foo, user
foo, user(dept1)
Please note that both of above users are different. Do you think any
connection with these entries and naming resolution?
Moreover, I tried doing it from Outlook look up but I didn't see any
difference. For example, when I copy "foo user" in To list, and press Cntl+K,
it gives me pop-up for selecting between "foo user" and "foo user(dept1)".
The same pop up appears when I do look up for "foo user(dept1)". Not sure
where is the issue. I might need to check how resolve query works.
Thanks.