Author Topic: problem with ed.getKeyword in autocad 2019 and in autocad 2017  (Read 1125 times)

0 Members and 1 Guest are viewing this topic.

daboho

  • Newt
  • Posts: 40
problem with ed.getKeyword in autocad 2019 and in autocad 2017
« on: October 13, 2021, 05:49:01 PM »
in autocad 2017 prompt keyword option can show in monitor and in editor
but in autocad 2019 only show in editor command and dont show in monitor
how to in autocad 2019 promptKeyswordOption run like in autocad 2017 (also able in monitor)
this picture is same as code

n.yuan

  • Bull Frog
  • Posts: 348
Re: problem with ed.getKeyword in autocad 2019 and in autocad 2017
« Reply #1 on: October 14, 2021, 09:09:06 AM »
It is called "Dynamic Input", controlled by system variable "DYNMODE". Dynamic input has been there for quite a while (I think it was way before Acad2017), so, it is not an issue with your Acad2017 and Acad2019, nor it has anything to do with .NET API (Editor. GetKeyword()/GetXXXxx()). You can either change the value of "DYNMODE", or you can do it on AutoCAD UI easily

daboho

  • Newt
  • Posts: 40
Re: problem with ed.getKeyword in autocad 2019 and in autocad 2017
« Reply #2 on: October 15, 2021, 03:55:58 PM »
thank you very match