Having Problem with adding a value to a field

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi there

I'm Using Outlook 2003 On Xpsp1
I've created a form and i added to him a field and called it 'Id'.
in the script editor i want when the user closes the form the field Id will
be filled automaticlly From a certain database.

I've managed to get the id from the database, but i got stuck with how do i
make the 'Id' Field in my form to be filled automaticlly from the Database..

Can Some1 Please Help me...?
 
Use the UserProperties collection to access your custom property, e.g.:

Item.UserProperties("Id") = some_value_from_database

See http://www.outlookcode.com/d/propsyntax.htm for more information on Outlook property syntax.

--
Sue Mosher, Outlook MVP
Author of Configuring Microsoft Outlook 2003

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
Back
Top