OL2000: The Close Button on the Administrator Form Does Not Function (275613)



The information in this article applies to:

  • Microsoft Outlook 2000

This article was previously published under Q275613

SUMMARY

The Outlook E-mail Security Update includes an Outlook Security Form that administrators can use to configure the Outlook E-mail Security Update. The custom Close button on the Outlook Security Form does not function, but you can close the Outlook Security Form by clicking the X in the upper-right corner of the item window.

MORE INFORMATION

The Outlook Security Form is available for download in the Admpack.exe file at the following Web site: If you have implemented the Outlook Security Form according to the Readme.txt file that is included with the Admpack.exe file, use the following steps to alter the existing published form:
  1. Click the Outlook Security Settings folder.
  2. In the Look In box, locate the Outlook Security Settings and the Outlook Security Form, and then click Outlook Security Form.
  3. On the Tools menu, point to Forms, and then click Design this Form. The form is displayed in design mode.
  4. Click Form, and then click View Code. This starts the Script Editor.
  5. Locate the following code section:
    Sub cmdClose_Click()
    	'Close item and prompt to save
    	On Error Resume Next
    	Item Close(2)
    End Sub
    					
  6. Locate the Item Close(2) line. There is a missing period (.) between Item and Close. Close is a method of Item. Change this line to the following:
    Item.Close 2
    					
  7. In Script Editor, click Close on the File menu.
  8. In the form, point to Forms on the Tools menu, and then click Publish Form As.
  9. Click Outlook Security Form, and then click Publish.

Modification Type:MajorLast Reviewed:4/17/2006
Keywords:kbinfo KB275613