Turning dialog boxes in acad 2017

Turning dialog boxes in acad 2017

gert.valk
Contributor Contributor
1,094 Views
7 Replies
Message 1 of 8

Turning dialog boxes in acad 2017

gert.valk
Contributor
Contributor

How can I turn off dialog boxes in acad2017? I have tryed Filedia, cmdecho etc. wihtout any result.

0 Likes
Accepted solutions (1)
1,095 Views
7 Replies
Replies (7)
Message 2 of 8

ВeekeeCZ
Consultant
Consultant
CMDDIA?
0 Likes
Message 3 of 8

_gile
Consultant
Consultant

Hi,

 

FILEDIA concerns file dialogs, you should also use CMDDIA for command dialogs.



Gilles Chanteau
Programmation AutoCAD LISP/.NET
GileCAD
GitHub

0 Likes
Message 4 of 8

gert.valk
Contributor
Contributor

When I type "style" on the command prompt after set CMDDIA to 0 the dialog box is still popping up.

0 Likes
Message 5 of 8

ВeekeeCZ
Consultant
Consultant
Accepted solution

There command line versions of most of the commands... with a hyphen prefix.
-STYLE

 

Read HERE for more details.

0 Likes
Message 6 of 8

Kent1Cooper
Consultant
Consultant

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.

Kent Cooper, AIA
0 Likes
Message 7 of 8

gert.valk
Contributor
Contributor

Many thanks for your support!!

0 Likes
Message 8 of 8

ВeekeeCZ
Consultant
Consultant
Glad to help!
0 Likes