DBPro.CallEx
This command allows you to call any overloaded dbpro command from within your scripts.
Remember however to include the dbpro dlls you want to use from your scripts by having a command from that dbpro dll within (or at the end of) your dbpro source code.
The first parameter is the name of the dbpro command you would like to call. The command name is without spaces and the leading characters are upper case.
e.g. "load object" has to be specified as "LoadObject"
The second parameter is a string that defines the parameter types. e.g. "SDL" The letters stand for:
S = String
D = DWORD
L = Integer
(There are other parameters possible. For questions about the usage please post in the dbpro forum thread or write me an email.)
The next following parameters are the arguments the dbpro command needs. If the command returns something, then so does the DBPro.CallEx function.
SYNTAX
DBPro.CallEx(command_name as String, parameter_definition [, parameters...])
Return=DBPro.CallEx(command_name as String, parameter_definition [, parameters...])
RELATED INFO
LUA command menu
Index
EXAMPLE
Showcase-example 1
Showcase-example 2