Problem with UserProperties and OutlookXP sp3

T

Tobias

Hi,

I've a custom form that's been working great since outlook 98.
It uses a few user properties for various fields.

It has been working fine with outlook 2000,XP, and 2003 however one
workstation using XP just upgraded to SP3 and now I'm getting script errors
on one line accessing the UserProperty.

The line is like this:

objUserProp.Find("Name").Value = StrName

Did something change with this service pack??

I'm not sure where to go from here except reinstall and not apply the
service pack.

Any clues??

Tobias
 
S

Sue Mosher [MVP-Outlook]

Try using this syntax instead, omitting Find:

objUserProp("Name").Value

There is a similar problem with Outlook 2003, and I wouldn't be surprised if
it crept into OL2002 SP3.
 
T

Tobias

Thank you Sue that did the trick.

Tobias


Sue Mosher said:
Try using this syntax instead, omitting Find:

objUserProp("Name").Value

There is a similar problem with Outlook 2003, and I wouldn't be surprised if
it crept into OL2002 SP3.
--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Top