L’interface de VDS Renaissance est disponible en plusieurs langues. La documentation officielle est maintenue en anglais afin de garantir une référence unique, cohérente et toujours à jour.

Creating Dialogs

The DIALOG command is used to create a dialog window for the program and manage its controls. The dialog becomes the program's main window, and will exist until the program terminates.

The dialog definition takes the basic form of:

DIALOG CREATE, ... define dialog window, title, size and properties

DIALOG ADD, ... define the dialog elements

DIALOG SHOW show the dialog.

Dialog elements begin with the element type appended to the DIALOG ADD command, which is optionally followed by details such as the control name, size, position and initial value. The details are contained within brackets and separated by semicolons. See Dialog Elements for more information.

Visual DialogScript's dialog designer allows you to design a dialog box interactively, and then generates the DIALOG CREATE command for you.