FP2000: Font Dialog Box Appears When Double-Clicking Form Field (219625)



The information in this article applies to:

  • Microsoft FrontPage 2000

This article was previously published under Q219625

SYMPTOMS

When you double-click a drop-down menu form field, the Font dialog box appears rather than the Drop-Down Menu Properties dialog box. In addition, if you right-click the form field, the Form Field Properties command is not listed on the menu that appears. This behavior is different than expected.

CAUSE

This behavior occurs if the <font> tag is placed between the <select> tag and the <option> tags, similar to the following example:

<select size="1" name="D1">
<font face="tahoma">
<option>apples</option>
<option>oranges</option>
<option>pears</option>
</font>
</select>

RESOLUTION

Modify the HTML source and move the <font> tag so that it is placed before the <select> tag, similar to the following:

<font face="tahoma">
<select size="1" name="D1">
<option>apples</option>
<option>oranges</option>
<option>pears</option>
</select>
</font>

STATUS

Microsoft has confirmed that this is a problem in the Microsoft products that are listed at the beginning of this article.

Modification Type:MajorLast Reviewed:12/2/2000
Keywords:kbbug KB219625