Visual DialogScript (VDS) is an interpreted programming language for Microsoft Windows. It can be used to create small, fast programs. VDS has a large number of dialog and graphical elements available to create professional looking programs. VDS programs have access to the Windows API; therefore, it is possible to write applications that can perform the same advanced tasks as other programming languages such as Visual Basic, C++, or Delphi.
Unlike other programming languages, the syntax of VDS is very simple.[1] Each command occupies one line, and has a plain English name that clearly describes its purpose. 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 have 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.[2]
Comments:
# This is a single line comment
REM This is a single line comment
Simple Information Message Box:
info "This is the information text"
Simple Warning Message Box:
warn "This is the warning text"
Create a custom dialog box:
dialog create,<name>,<top pixel position>,<left pixel position>,<width in pixels>,<height in pixels>
Write to the Windows Registry:
registry write,<root key>,<key>,<subkey>,<data>
Display an input prompt dialog box, storing the result in the variable %A:
%A = @input("Please enter a value:")
Visual DialogScript was created by Julian Moss (1953 – October 24, 2014[3]) of JM-Tech/Tech-Pro Ltd. In 1998, after version 3.0, Emmanuel Daunizeau of S.A.D.E. sarl, took over the ownership and development of VDS, modifying and improving its syntax. Currently, VDS is marketed by the British company Commercial Research Ltd. and is still the property of Emmanuel Daunizeau who continues to develop it.
Several versions of VDS have been released over time:
There are several versions available for download:
By: Wikipedia.org
Edited: 2021-06-18 18:21:47
Source: Wikipedia.org