VDS Renaissance 的界面提供多种语言。官方文档以英语维护,以确保提供统一、一致且始终最新的参考。
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.