LoadDVB Method

Back to Methods Reference

Loads the specified AutoCAD VBA project file.

Signature

VBA : object.LoadDVB Name

VL : (vla-LoadDVB object Name)

(vla-LoadDVB applic "c:/test.dvb")

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

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

Example :


(defun c:al-loaddvb ()

(vl-load-com)

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

(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