// VDS 7 “Renaissance”

The language

The DialogScript language: simple syntax, variables, commands, 100+ functions, dialog elements and compiler directives.

Unlike other programming languages, the syntax of DialogScript is very simple. Each command occupies one line, and has a plain English name that clearly describes its purpose.

Syntax

Variables are typeless, and can hold many kinds of information, for example numbers or text. Functions are clearly distinguishable with names that start with '@', just like a spreadsheet.

The DialogScript language has a simple syntax not unlike MS-DOS batch language. It is designed for ease of use and efficiency when being interpreted by the run-time engine. There are 10 system variables, %0 to %9, which initially hold the script file name in %0 and command-line parameters in %1 through %9, just as in a batch file. There are also a further 26 user variables, %A to %Z. The contents of all variables (including system ones) can be changed once the script is running. There are now also 4032 global variables. These variables begin with %%, a letter, then alphanumerics plus underscores (e.g. %%my_variable_1). There is no limit on the length of these user-defined variable names.

Dialog Capabilities

Script programs can be tested instantly using the development environment. You can then create an executable file which can be run just like any other Windows application. Executable files created by Visual DialogScript, and its required run-time files, may be distributed free of any royalties. If you're creating programs for Internet distribution then note that the Visual DialogScript run-time files are smaller than those of any other comparable development system.

Using Visual DialogScript you can create programs that run entirely silently, in the background, programs that use a console window, and Windows programs that have a graphical user interface (GUI). Most GUI DialogScript programs have a fixed-size main window or dialog (hence the name) but with a little extra code you can create programs whose windows are resizable.

The user interface of a GUI program is created using DialogScript code. You can write this code yourself, or use the Dialog Designer to design the program interface visually (this explains the visual part of the name). When you're done with the Dialog Designer, it generates the code to create your design. And as long as you don't manually change this code too much, you can always use the Dialog Designer to edit it.

Dialog Elements

Dialog elements are things like buttons, input boxes and list boxes that are placed on a window or dialog and allow the user to receive information and interact with a script program. They are created using DIALOG ADD commands. Parameters to these commands specify the type of dialog element, its name (used to refer to the dialog element in the program) and the information needed to create the element, such as its position and size.

The <name> parameter is mandatory. Most dialog elements also require at least the top and left position co-ordinates. Many of the remaining parameters are optional, and may be left as null or omitted; when omitted, DialogScript will use suitable defaults. Position co-ordinates are relative to the client area of the dialog window. Parameters, where present, are appended to the element name and separated by commas.

Commands

Unlike labels, commands need not start in the first character position. It is recommended that they are indented using spaces for readability. Commands are built into the DialogScript language, or may be added using extensions. DialogScript 5 also allows user-defined commands.

A command consists of the command name (see Command Reference) followed optionally by a string. The string is used as the argument (or parameters) to the command. Many commands have only a single argument, but others have more than one, in which case commas are used to separate the parameters. A space must separate the command from the first parameter. Commands are not case-sensitive.

Here are some examples of commands:

TITLE My first script
INIFILE WRITE,Reg_Info,UserName,Fred Bloggs

Strings may include variable and function references, which are evaluated before the command is carried out.

Functions

DialogScript contains over 100 functions (see Function Reference), which are evaluated at run time and return a string containing information. Extra functions may be added by means of extensions. DialogScript 5 also allows user-defined functions.

Functions start with an @ symbol followed by the function name. The argument(s) to the function are in the form of a string enclosed in parentheses. The parentheses must be present even if the function takes no arguments. For functions that take more than one argument the arguments are separated by commas.

Here are some examples of functions:

%A = @ASK(Do you want to continue?)
%A = @EQUAL(%F,WIN.INI)

Note that because the @ symbol is used to identify functions you cannot use it for any other purpose (such as in text) unless it is enclosed within double quotes.

Compiler

Here is a list of the compiler directives available in Visual DialogScript:

  • #DEFINE COMMAND — declares all command names that are not built in to VDS.
  • #DEFINE FUNCTION — declares all command and function names that are not built in to VDS.
  • #RESOURCE ADD, ANIICON — adds an aniicon resource.
  • #RESOURCE ADD, BITMAP — adds a bitmap resource.
  • #RESOURCE ADD, CURSOR — adds a cursor resource.
  • #RESOURCE ADD, ICON — adds an icon resource.
  • #RESOURCE ADD, TEXT — adds a text resource.
  • #RESOURCE ADD, — adds a user-defined type of resource.
  • #INCLUDE — allows a program to incorporate code from multiple script files.

Build it with VDS 7.

The full IDE + language. Windows & Linux · 32/64-bit · Unicode.