LoadARX Method

Back to Methods Reference

Loads the specified AutoCAD ARX application.

Signature

VBA : object.LoadARX Name

VL : (vla-LoadARX object Name)

(vla-LoadARX applic "c:/test.arx")

  • Object : Application
    The object or objects this method applies to.

  • Name : String; input-only
    The full path name of the application to load.

Example :


(defun c:al-loadarx ()

(vl-load-com)

(setq applic (vlax-get-acad-object))
                        
(vla-LoadARX applic "c:/test.arx")

(princ)

);defun

 
The AutoLisp/Visual Lisp/VBA Resource Website
Google
Search the WWW Search AfraLisp

Copyright © 1999-Perpetuity by AfraLisp

All rights reserved.
Information in this document is subject to change without notice.
Site created and maintained by Kenny Ramage

The AutoLisp/Visual Lisp/VBA Resource Website