Variables of dialogsThe list of the dialog variable-parameters. You can re-define the following variables for dialog windows. If you want to re-define variables for all dialogs then append a character '_' before the variable name ( for example, _Dcap ) Dcap - The dialog caption Dhead - The header caption text Dsubhead - The header text Dprev - The text for 'Prev' button Dnext - The text for 'Next' button Dcancel - The text for 'Cancel' button Dlabel - The text for the label on the bottom-left corner Dlabelurl - URL for the bottom left label DOK - Custom processing 'Cancel' button 1 - finish successfully 2 - The program exits quietly and doesn’t ask for confirmation. Dcolor - Custom color for the header. The default color for the header is the user's Window Color . Also, you can specify any RGB color. If you want to specify a custom color for all dialogs, specify in the defcolor macros.
Dcolor => 0xFF0000 - red color. Dif - You can skip any dialog depending on this condition. The dialog is skipped if the condition is FALSE during the installation. See How to use If Condition for more details.
Dif => isweldlg - Skip the dialog if 'isweldlg' equals "0". Dfunc - Custom dialog window function. See How to define a custom dialog function for more details.
You can move and resize controls of dialog windows. See How to move and resize dialog controls for more details. |