Adding customerForm.cls to the project
- Last Updated: March 30, 2020
- 2 minute read
- OpenEdge
- Version 12.2
- Documentation
The customerForm.cls file that you will add to the project in this section is an ABL Form that implements the Customer window in the application.
An ABL Form is one of the visual containers that you can create in the Visual Designer. The ABL Form implements a non-modal window in an application. Non-modal means that the window can be active while other windows are also active. The Customer, Department, and Purchase Order windows in the sample application are all non-modal ABL Forms.
To add customerForm.cls to the project:
Note: If you look at customerForm.cls in the ABL Editor, you
can see the preliminary implementation of the methods specified in the interface file,
IUpdatable.cls. To see customerForm.cls in the
ABL Editor, select customerForm in the Visual Designer and press F9. The methods specified in IUpdatable.cls are
AddRecord(), DeleteRecord(),
SaveRecord(), and CancelUpdate(). Adding interface methods explains how to complete the implementation of these interface
methods.

