I’m just learning some vbs code and I stuck. On a custom Outlook contact form, I have a check box that I want to enable / disable a text box filed.
If Item.UserProperties(“WelcomeLetterSent”).Value = “False” then
Item.UserProperties(“WelcomeSentDate”).enable = False
end if
But I get a “not supported error”. What’s going wrong? How do I enable / disable the text box in the vbs ?
Thanks,
Chris