printing question

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

Guest

Hi, sorry to bug you with yet another printing question.... but I'm hoping
you can help.

I have a custom form which announces personnel changes (hires, terms, etc).
I want one person to send the form to several people (including me), and I
myself want to be able to print the fields I care about. I have created my
word template, added the bookmarks, unchecked the "Send form definition with
item" box on the Properties tab, and I used the vbscript code example from
the outlookcode.com website (code found at
http://www.outlookexchange.com/articles/home/lengho01.asp)

When I click the Print button, I'm getting this error
Object Required: 'Item.UserProperties.find(....)'

Any ideas? I'm not very familiar wit VBScript so I don't know what I'm
missing....
Thanks!
 
The error message suggests that the property whose value you're trying to use does not actually exist on the item. You can check that in the All Fields page.

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

and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
 
I do have more fields in my outlook form than I do in my word template (I
don't need to print out all of the fields). Would that be what is causing
it? And if so, is the only way to get around that to print all of the fields?
I appreciate your help! :-)
 
I found it. I was stupidly trying to include the 'from' field.
Thanks again for your help.
 
Back
Top