Controlling forms and windows

You will use scripts to control forms and windows in your application. The following commands show some of the actions scripts can perform.

Opening or closing forms

The open form statement opens forms. The following script opens the Houses form.

open form Houses;

You need to open the form before you can open any of the windows that are part of the form.


The close form statement closes a form. The following script closes the House_Lookup form.

close form House_Lookup;

Opening or closing windows

The open window statement opens windows. The following script opens the Customer_History window.

open window Customer_History;

The close window statement closes windows. The following script closes the Customer_History window.

close window Customer_History;


Documentation Feedback