<Entity name: 147d978>

Discussion in 'AutoCAD' started by Adesu, Jan 10, 2005.

  1. Adesu

    Adesu Guest

    I have 3 model to find "<Entity name: 147d978>",I want to know what others
    way to find entity name,any body to add it,thanks

    ; MODEL 1
    (setq e (car (entsel)))
    (setq vo (vlax-ename->vla-object e))
    (setq vo2entsel (vlax-vla-object->ename vo)) >>>>> "<Entity name: 147d978>"

    ; MODEL 2
    (setq ss (ssget))
    (setq en (ssname ss 0)) >>>>> "<Entity name: 147d978>"

    ; MODEL 3
    (setq ss (ssget))
    (setq en (ssname ss 0))
    (setq ent (vlax-ename->vla-object en))
    (setq vo2entsel (vlax-vla-object->ename ent)) >>>>> "<Entity name: 147d978>"
     
    Adesu, Jan 10, 2005
    #1
  2. Adesu

    Mark Propst Guest

    That is already the ename >>>>> "<Entity name: 147d978>"

    no need to convert to activex and backagain
    same here, this is the ename >>>>> "<Entity name: 147d978>"

    ;again no need for this
     
    Mark Propst, Jan 10, 2005
    #2
Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments (here). After that, you can post your question and our members will help you out.