CAD Forum - tips, tricks, discussion and utilities for AutoCAD, Inventor, Revit and other Autodesk products [www.cadforum.cz]
CZ | EN | DE
Login or
registration
  Visitors: 7210

CAD tip CAD tip # 7381:

   
Question CAD 
 %  platform  category 
Q - question

How to open another DWG file from LISP?

A - answer If you want to open a different DWG drawing from your LISP application, the solution is apparently simple:
(command "_.OPEN" "d:\\drawings\\mydrawing.dwg")
in higher AutoCAD versions use:
(command "_.FILEOPEN" "d:\\drawings\\mydrawing.dwg")
But this method works only in the single document environment (SDI=1). In the default multiple document environment (MDI; SDI=0), this function creates a new document and activates it. But it doesn't pass the filename parameter properly as the command execution returns immediately back to the original document (drawing).

To solve this problem, you can use VisualLISP and the ActiveX interface in AutoCAD. You can invoke the open method for another document with these commands (program control will return to the original document):

(setq acApp (vlax-get-acad-object))
(setq acDocs (vla-get-documents acApp))
(vla-open acDocs "d:/drawings/mydrawing.dwg")
ACAD
100% *  CAD 
1.6.2010    22483×  
Prices - CAD eShop:
applies to: AutoCAD ·

See also:
Tip 13868:XrefStamp - create a dynamic list of xrefs in your DWG drawing.
Tip 13858:Is there also a SETBYBLOCK command?
Tip 13855:DBXscanLayers and DBXscanBlocks - bulk report content of DWG files in a folder.
Tip 13831:ReplMTcol - recoloring parts of text in paragraph Mtext.
Tip 13827:Snap points to the nearest curve/polyline with Snap2Curve.


Back   All CAD Tips



Have we helped you? If you want to support the CAD Forum web service, consider buying one of our CAD applications, or our custom software development offerings, or donating via PayPal (see above). You may also add a link to your web - like this "fan" link: CAD Forum - tips, utilities, blocks for Autodesk products
CAD:    OS:    Categ: 
Text:  FAQ glossary   



Featuring:
Add .CIT raster format support to AutoCAD and Map and Civil 3D
CITin More info


Please use these tips at your own risk.
Arkance Systems is not responsible for possible problems that may occur as a result of using any of these tips.
TOPlist