Form design

R

Rich Dyer

I am dabbling with the forms designer to create a standard form for the users in our business to use. The intention is that the mail message will give the users a field to type a short message, and I would like to upload a file unique to the user's PC and attach it to the message. The file is present on every PC in the business and it contains info about the PC and user. I cant find any way of doing this in the form designer

The file to attach is of the form... c:\folder\file.in

I am using Outlook 2000 on windows 2000
 
S

Sue Mosher [MVP-Outlook]

You could use code in the Item.Send event handler:

Function Item_Send()
Item.Attachments.Add "c:\folder\file.ini"
End Function

--
Sue Mosher, Outlook MVP
Author of
Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers



Rich Dyer said:
I am dabbling with the forms designer to create a standard form for the
users in our business to use. The intention is that the mail message will
give the users a field to type a short message, and I would like to upload a
file unique to the user's PC and attach it to the message. The file is
present on every PC in the business and it contains info about the PC and
user. I cant find any way of doing this in the form designer.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top