ID: Q182362
The information in this article applies to:
When you write Visual Basic Scripting Edition (VBScript) code to customize a Microsoft Outlook 98 form, you must understand the relationship between the item's fields and form controls.
Microsoft provides programming examples for illustration only, without warranty either expressed or implied, including, but not limited to, the implied warranties of merchantability and/or fitness for a particular purpose. This article assumes that you are familiar with the programming language being demonstrated and the tools used to create and debug procedures. Microsoft Support professionals can help explain the functionality of a particular procedure, but they will not modify these examples to provide added functionality or construct procedures to meet your specific needs. If you have limited programming experience, you may want to contact the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/default.asp
Controls are objects, such as a text box, a scroll bar, a rectangle, a list box, or a command button, that let users control the program. You place controls on a form to display data or choices, perform an action, or make the form easier to read. As an example, you can control a mail message item by using built-in controls, such as the "Subject" textbox, or you can modify the form by adding your own controls. Controls, by themselves, provide no storage for the data that is associated with them. Controls are only the visual representation of the data on the form.
Item fields are the actual Messaging Application Programming Interface (MAPI) properties where you store data when you save or send an item. In the example above, the "Subject" listbox control is linked (or "bound") to an item field also called "Subject." The control and the field may or may not have the same name.
All of the built-in form controls (To, From, Cc, and such) are automatically linked to corresponding built-in MAPI fields. However, if you create a custom form and add a custom control, you should typically create a MAPI field to store the data that is associated with the control.
For example, suppose you want to add a textbox to your mail message form that will allow people to type in their office location. When you design the new form, you can add a textbox control by dragging the control from a special toolbar called the Control Toolbox. This creates a place to type in the office location. Since the control itself provides no storage for the item, when you send the item to someone, the text you typed into the office location is lost. You must also create a field to provide storage for the data.
You can create a field by using the Field Chooser. Once the field is created, you then use the Properties dialog of the office location textbox control to bind the control to the field. Once this is done, the office location control has an item field to provide storage for the data. This way, when someone fills in the field and sends the item, the data is preserved when the item is received by someone else.
1. Create a new item, such as a new message.
2. On the form's Tools menu, point to Forms and then click "Design Outlook
Form" to switch to the form's design mode.
2. On the Form menu, click Control Toolbox.
3. Drag the control type that you want from the Control Toolbox
to the place on the form where you want the control to appear.
1. If the Field Chooser window is not open, on the form's Form
menu, click Field Chooser. You can also open the Field Chooser
from the main Outlook View menu if you are not in design view
and have no items open.
2. Click New to open the New Field dialog box.
3. In the Name box, type a name for your new field. In the Type list,
click to select the data type of field. In the Format list, click to
select the format for the field.
4. Click OK.
1. Starting in the form design view, use the right mouse button to
click the control, and then click Properties on the shortcut menu.
2. In Properties, click the Value tab.
3. Click Choose Field to select the field you want to bind to this control.
NOTE: You can also click New to create a new field at this time
instead of using the Field Chooser.
The VBScript syntax for accessing values associated with controls is quite different from the syntax for accessing fields. There are situations where it is possible to change a value by using either method.
Generic: Item.GetInspector.ModifiedFormPages("PageName").Controls _
("ControlName").Property = <value>
Example: Item.GetInspector.ModifiedFormPages("Message") _
.Controls("OfficeLoc").Visible = True
Generic: Item.FieldName = <Value>
Example: Item.Subject = "This is a new subject"
Generic: Item.UserProperties.Find("FieldName").Property = Value
Example: Item.UserProperties.Find("OfficeLoc").Value = "Blg 4, 1234"
In the "Office Location" example above, these two example lines of code have the same effect on the form.
Item.UserProperties.Find("OfficeLoc").Value = "Blg 4, 1234"
-or-
Item.GetInspector.ModifiedFormPages("Message").Controls _
("OfficeLoc").Text = "Blg 4, 1234"
The first example changes the Office Location field to a new value, and the
second line changes the textbox control text property to the new value.
Since the control is bound to the field, a change made in either place
affects the other.
Example: Make the Office Location textbox not visible
Correct: Item.GetInspector.ModifiedFormPages("Message") _
.Controls("OfficeLoc").Visble = False
Incorrect: Item.UserProperties.Find("OfficeLoc").Visible = False
Example: Change the office location text to "Building 5"
Preferred: Item.UserProperties.Find("OfficeLoc").Value = "Building 5"
Also works: Item.GetInspector.ModifiedFormPages("Message") _
.Controls("OfficeLoc").Text = "Buiding 5"
Example: Change the subject to "This is a subject"
Preferred: Item.Subject = "This is a subject"
Also works: Item.GetInspector.ModifiedFormPages("Message") _
.Controls("Subject").Text = "This is a subject"
For more information on fields and controls, please see the following Articles in the Microsoft Knowledge Base:
ARTICLE-ID: Q182365
TITLE : OL98: How to Programmatically Set TextBox and CheckBox
Values
ARTICLE-ID: Q180911
TITLE : OL98: How to Populate a ComboBox With Your Contacts
(VBScript)
For more information about creating solutions with Microsoft Outlook 98,
please see the following articles in the Microsoft Knowledge Base:
ARTICLE-ID: Q180826
TITLE : OL98: Resources for Custom Forms and Programming
ARTICLE-ID: Q182349
TITLE : OL98: Questions About Custom Forms and Outlook Solutions
Additional query words: OutSol OutSol98 automation programming
Keywords : kbdta OffVBS OffVBA
Version : WINDOWS:98
Platform : WINDOWS
Issue type : kbhowto
Last Reviewed: May 17, 1999