but went I run the following I get an error.
_$ (vla-GetEntity CurrentModelSpaceObject 'myObject 'myPickedPoint "Pick
Something...")
; *** ERROR: unknown name: "GetEntity"
Could someone tell me why this is.
Thank you
Bill.K...@woolpert.com
f. ActiveX: Some objects are not exposed correctly
-----------------------------------------------
Methods exposed by the Selection Set, Utility, and ViewPort
objects do not function correctly in Visual LISP.
VLA- functions should not be used on these objects.
Bill Kimbrell wrote in message <6reo9p$2m...@adesknews2.autodesk.com>...
Bill Kimbrell
In this case, it looks like vla-GetEntity is broken,
because it should accept quoted symbols for the first
two arguments (which are both output arguments), but
it's expecting a VLA-OBJECT for the first argument
instead.
Someday, they'll have this thing fixed. Then, they
might be able to figure out how works. Until then,
use (entsel).
Bill Kimbrell wrote:
>
> In the Visual LISP console the function vla-GetEntity will turn blue,
>
> but went I run the following I get an error.
>
> _$ (vla-GetEntity CurrentModelSpaceObject 'myObject 'myPickedPoint "Pick
> Something...")
>
> ; *** ERROR: unknown name: "GetEntity"
>
> Could someone tell me why this is.
>
> Thank you
> Bill.K...@woolpert.com
--
/*********************************************************/
/* Tony Tanzillo Design Automation Consulting */
/* Programming & Customization for AutoCAD & Compatibles */
/* ----------------------------------------------------- */
/* Co-Author of Maximizing AutoCAD R13 and */
/* Maximizing AutoLISP for AutoCAD R13/R14 */
/* ----------------------------------------------------- */
/* tony.t...@worldnet.att.net */
/* http://ourworld.compuserve.com/homepages/tonyt */
/*********************************************************/
Bill Kimbrell