Message 1 of 8
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How can I turn off dialog boxes in acad2017? I have tryed Filedia, cmdecho etc. wihtout any result.
Solved! Go to Solution.
How can I turn off dialog boxes in acad2017? I have tryed Filedia, cmdecho etc. wihtout any result.
Solved! Go to Solution.
When I type "style" on the command prompt after set CMDDIA to 0 the dialog box is still popping up.
The CMDDIA System Variable suppresses them for only "certain" commands [Help doesn't list them specifically]. The hyphen prefix is the easiest way to suppress them, but you can also call a command from inside an AutoLisp (command) function:
(command "_.style")
and the command-line version will be used instead of the dialog box.