Vulcan.NET Run Exe Example
REFERENCES "System"
USING System.Diagnostics
FUNCTION Start() AS VOID
// Example of how to start another process
LOCAL oProcess AS Process
oProcess := Process{}
oProcess:StartInfo:FileName := "Notepad.exe"
oProcess:StartInfo:Arguments := ""
oProcess:Start()
RETURN