Function Entry: VLE-STARTAPP
← Prev | ↑ Chapter | Next → | Index | Symbols
Function Entry: VLE-STARTAPP
Name
vle-startapp
Class
BricsCAD VLE Library Function
Syntax
(vle-startapp cmd args mode)
Arguments and Values
- cmd the command / program to run (*.exe *.com
- *.bat)
- args optional arguments as string, or NIL if no
- arguments
- mode T
- specifies to wait for the process, NIL specifies to run
- parallel
Description
runs the specified command, optionally with arguments, and optionally waits for the process to end (synchronous execution)
Return Values
process ID if started parallel, or the program's return status if started synchronously
Examples
(vle-startapp "notepad.exe" "test.dat" t) starts notepad.exe with "test.dat" file, running synchronously
Notes
replaces (startapp), which does not wait for the process (asynchronous)
Availability
- AutoCAD 2026: not documented.
- BricsCAD V26: documented.
- Status: BricsCAD-only.
Source Notes
- [vle-startapp (BricsCAD V26 DevRef)](https://developer.bricsys.com/bricscad/help/en_US/V26/DevRef/source/vlestartapp.htm)
- Status: documented (Phase 3 follow-up: body filled from the BricsCAD V26 per-symbol page on 2026-04-26).