Some basics for ol forms - send itme to:

  • Thread starter Markus Mannheim
  • 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
 
S

Sue Mosher [MVP-Outlook]

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
 

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