Jump to content

Recommended Posts

Posted

Hi. I have several DXF files in a folder and i need to unite them all in one dwg file in absolute coordinates. How can I do it? Can you do from AutoCAD or need a lisp?

Thank you

 

I have Autocad 2012.

merge dxf.rar

Posted

I have done this in the past but can't remember how. I think I decided that it was easiest to just save the dxf files as dwg and then insert them.

Posted

Found this solution at the AutoDesk Discussion Groups.

 

Open the first dxf file in AutoCAD and than use INSERT to include the other dxf files step by step.

 

Or you can write a lisp file with lines in this matter:

 

(command "_insert" "C:\\dwg\\sheet1.dxf" "0,0" "1" "1" "0")

(command "_insert" "C:\\dwg\\sheet2.dxf" "0,0" "1" "1" "0")

 

--

bob.at

CAD & GIS Services, Graz, Austria

Posted

Or you can write a lisp file with lines in this matter:

 

(command "_insert" "C:\\dwg\\sheet1.dxf" "0,0" "1" "1" "0")

(command "_insert" "C:\\dwg\\sheet2.dxf" "0,0" "1" "1" "0")

I remember now, that's how I used to do it.

Posted

Thank you very much to all. Finally I used the routine of Lee Mac. It's just what I need. Thank you. You are great teachers.:notworthy::notworthy:

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...