TheSwamp

Code Red => AutoLISP (Vanilla / Visual) => Topic started by: V-Man on March 22, 2004, 04:52:54 PM

Title: Visual Lisp
Post by: V-Man on March 22, 2004, 04:52:54 PM
Where can I find all of the "VLA", "VLAX" items for Visual Lisp?
Title: Visual Lisp
Post by: daron on March 22, 2004, 05:11:12 PM
Under acad_dev.chm in the help folder, look for vba and activex reference.
Title: Visual Lisp
Post by: Mark on March 22, 2004, 05:15:45 PM
All the vl functions are listed under AutoLISP Reference in the acad_dev.chm file. The vla- and vlax- functions are derived from looking at the ActiveX and VBA Reference of the same Help file. For example, the AddLine function. You would use vla-addline.
Title: Visual Lisp
Post by: V-Man on March 22, 2004, 05:19:49 PM
Thanks guys.
Title: Visual Lisp
Post by: Mark on March 22, 2004, 05:31:49 PM
These is a lot more to it than what was posted. Pick one of the vba functions and try it. if you get stuck ask how here on theswamp. they get easier the more you do. :D
Title: Visual Lisp
Post by: Keith™ on March 22, 2004, 05:46:01 PM
The syntax on the vla functions is not well documented, but you can find out most of the stuff you need to know from the VBA help file.
Title: Visual Lisp
Post by: SMadsen on March 23, 2004, 05:46:54 AM
Every defined symbol in Visual LISP, including functions, can be looked up via the Apropos feature (View->Apropos Window...).
E.g. if you input "vlax", it'll show a list with all symbols containing VLAX. Hitting the ?-button will open the help file on the selected item, .. or the 404 page if no help is available.
Title: Visual Lisp
Post by: ImaJayhawk on March 23, 2004, 11:41:59 AM
That last tip is a great tip.  I always wanted an easy way to find some of the undocumented autolisp commands in Building Systems.  Thanks.


-ImaJayhawk
Title: Visual Lisp
Post by: CAB on March 23, 2004, 11:56:54 AM
Thank You Stig. 8)
Title: Visual Lisp
Post by: Anonymous on March 23, 2004, 06:31:48 PM
Thanks