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.