Author Topic: ddvpoint , ddview , view  (Read 1271 times)

0 Members and 1 Guest are viewing this topic.

domenicomaria

  • Swamp Rat
  • Posts: 723
ddvpoint , ddview , view
« on: January 31, 2021, 11:03:27 AM »
(defun C:VP () (command "ddvpoint"))
doesn't work

(defun C:VW () (command "ddview"))
doesn't work


(defun C:VW () (command "view"))
works but doesn't show the dialog

???

Marc'Antonio Alessi

  • Swamp Rat
  • Posts: 1451
  • Marco
Re: ddvpoint , ddview , view
« Reply #1 on: January 31, 2021, 12:07:52 PM »
(defun C:VW () (command "view"))
works but doesn't show the dialog
???
(defun C:VW () (initdia 1) (command "view"))

domenicomaria

  • Swamp Rat
  • Posts: 723
Re: ddvpoint , ddview , view
« Reply #2 on: January 31, 2021, 12:31:54 PM »
the same is for 'VPOINT' (NOT 'DDVPOINT' !)

(defun C:VP () (initdia 1 )(vl-cmdf "VPOINT"))

my brain is leaving me. . .

Thank you

ciao
« Last Edit: January 31, 2021, 12:38:11 PM by domenicomaria »

Marc'Antonio Alessi

  • Swamp Rat
  • Posts: 1451
  • Marco
Re: ddvpoint , ddview , view
« Reply #3 on: January 31, 2021, 12:40:17 PM »
the same is for 'VPOINT' (NOT 'DDVPOINT' !)

(defun C:VP () (initdia 1 )(vl-cmdf "VPOINT"))

my brain is leaving me. . .

Thank you

ciao
:-)