Process
Object for starting of processes
|
|
|
FUNC |
COM |
SF |
---|---|---|---|---|---|
Call |
Starts the specified program in a new process and waits for end of process. |
void Call (String progName) |
1211.1 |
- |
- |
SetBoxTitle |
Sets the description texts for the process. |
void SetBoxTitle (String text) |
1211.1 |
- |
- |
Example Process
START 59
rem convert Hicad-file name into operating system file name
FUNC delete filename
FUNC HicFileName filename
FUNC filename.Set ("1:test.exe")
FUNC $n:= filename.GetOSName ()
rem start process
FUNC delete proc
FUNC Process proc
FUNC proc.SetBoxTitle ("Test")
FUNC proc.Call($n)
END