Loads the specified ObjectARX application.
Supported platforms: Windows only
VBA:
object.LoadARX Name
Type: Application
The object this method applies to.
Access: Input-only
Type: String
The full path name of the .arx application to load.
No return value.
No additional remarks.
VBA:
Sub Example_LoadARX()
    ' This example loads an ObjectARX application.
    
    ' Note: The application listed here does not exist and
    ' will cause an error when run. Change the application name
    ' to the path and name of your ObjectARX application.
    ThisDrawing.Application.LoadArx "MyARXApp.arx"
        
End Sub
Visual LISP:
(vl-load-com)
(defun c:Example_LoadARX()
    ;; This example loads an ObjectARX application.
    (setq acadObj (vlax-get-acad-object))
    
    ;; Note: The application listed here does not exist and
    ;; will cause an error when run. Change the application name
    ;; to the path and name of your ObjectARX application.
    (vla-LoadArx acadObj "MyARXApp.arx")
)