DefineDialog

>>-aUserDialog~DefineDialog------------------------------------><


The DefineDialog method is called by Create. It is designed to be overwritten in a subclass of UserDialog. You should do all the definition of dynamically added dialog controls within this method, using the Add... Methods.

Protected:

This method is protected. There is no need to call this method from anywhere else than Create.

Example:

When the dialog is created, a push button and an entry line are added to its client area:

::class MyDialog subclass UserDialog
     .
     .
     .
::method DefineDialog
self~AddButton(401, 20, 235, 40, 15, "&More...")
self~AddEntryLine(402, INPUT_1, 20, 170, 150, 10)
     .
     .
     .