ScriptStart
Object for starting of VB scripts.
|
|
|
FUNC |
COM |
SF |
---|---|---|---|---|---|
Start |
Starts the specified VB script and waits for its end. |
void Start (String scriptName) |
1211.1 |
- |
- |
SetBoxTitle |
Sets the description text for the script. |
void SetBoxTitle (String text) |
1211.1 |
- |
- |
Example ScriptStart
START 59
rem convert Hicad-file name into operating system file name
FUNC delete filename
FUNC HicFileName filename
FUNC filename.Set ("1:test.vbs")
FUNC $n:= filename.GetOSName ()
rem start script
FUNC delete scr
FUNC Scriptstart scr
FUNC scr.SetBoxTitle ("Test")
FUNC scr.Start($n)
END