Form design

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

Guest

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
 
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.
 
Back
Top