The information in this article applies to:
SUMMARYWhen 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. MORE INFORMATIONMicrosoft 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/overview/overview.asp The Difference Between Controls and FieldsControls 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. Using Fields and ControlsAll 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. Steps to Create a Control on a Form
Steps to Create a Field to Provide Storage for the Control
Steps to Bind a Control to a Field
Using VBScript to Change Field and Control ValuesThe 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.Syntax for Accessing a Control on a Form
Syntax for Accessing a Built-in Field
Syntax for Accessing a Field You Create (User-defined Field)
Usage ExamplesIn the "Office Location" example above, these two example lines of code have the same effect on the form.
-or-
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.
Tips for When to Use Each Method
REFERENCESFor more information on fields and controls, please see the following Articles in the Microsoft Knowledge Base: Q182365 OL98: How to Programmatically Set TextBox and CheckBox ValuesFor more information about creating solutions with Microsoft Outlook 98, please see the following articles in the Microsoft Knowledge Base: Q180826 OL98: Resources for Custom Forms and Programming Additional query words: OutSol OutSol98 automation programming
Keywords : kbdta OffVBS OffVBA |
Last Reviewed: November 13, 1999 © 2000 Microsoft Corporation. All rights reserved. Terms of Use. |