Address Book Text Boxes

The Address Book application contains four text boxes for entering search phrases (for example, the First Name box). The following HTML code defines the text box objects:

<PRE> First Name     <INPUT NAME=SFirst SIZE=30> </PRE>

<PRE> Last Name      <INPUT NAME=SLast  SIZE=30> </PRE>

<PRE> Title          <INPUT NAME=STitle SIZE=30> </PRE>

<PRE> E-mail Alias   <INPUT NAME=SEmail SIZE=30> </PRE>

The intrinsic INPUT control is built into HTML. The NAME parameter defines what it will be called in code. For example, the VBScript code can check SFirst.Value for text in the First Name box. The SIZE parameter lets you adjust the length of the text box, in characters.