Some basics for ol forms - send itme to:

  • Thread starter Thread starter Markus Mannheim
  • Start date Start date
M

Markus Mannheim

Hi,

I just started with outlook forms and having some questions on sending the
form:

1. Sending the form to an individual mail address, how can I add addresses
in vbscript?
(Click a button, send the form to an individual address)

2. How can I "read" the "Create Date / Time" of the origin message with
vbscript?
(Insert the date / time into the subjectline)

3. How can I use the different "leafs" in the form (Page2 Page3 etc.) and
how do I route them in the form?
i.e. When Button in the first leaf is clicked, use Page 3 for sending ...

Hope somebody can understand this... :-)

For help thanks in advance,

Markus
 
1) Use the Recipients.Add method:

Set newRecip = Item.Recipients.Add([email protected])

2) Use the Now() function:

Item.Subject = Item.Subject & " - " & Now()

3) Take a look at the Help topic for the Inspector.SetCurrentFormPage method.

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

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