AutoCAD Architecture :: Opening Files That Are Being Used As Xrefs In Other Drawings
Jan 26, 2012
I've recently run into a problem that involves xrefs. Basically, I cannot open files that are being xrefed in other drawings when those drawings are currently open. AutoCAD Architecture will only allow me to open the xrefed file as a read-only version. For example:
I have 1ST FLOOR PLAN (drawing file) xrefed into A-201.00 FIRST FLOOR PLAN (sheet file). If one of my team members has the sheet file open with the drawing file loaded, then AutoCAD will only let me open the drawing file as a read-only file. But if my team member has the sheet file open with the drawing file unloaded, then I can open the drawing file without any problems.
I have never had this type of problem with xrefs before and so I'm wondering if it's an AutoCAD Architecture 2012 bug.
View 2 Replies
ADVERTISEMENT
Apr 18, 2012
I regularly recieve files from Architects and of course they have several xrefs. I have all of particular files that are referenced, however i cannot open the main file and have them load in 2013. I also cannot click reload or even detach and then reattach them. Nothing happens. However if i open the file in 2012 it opens just fine then i can bind everything into one. is there a setting i need to change?
View 1 Replies
View Related
Nov 8, 2012
I was opening files and autocad was telling me that some xrefs were missing from the drawing, did I want to locate the xrefs or ignore (I hit ignore and accidentally checked the always do this to these types of files). Now, when I load a drawing I can not get the building to load into the drawings.
How to turn the locate feature back on for xrefs?
View 9 Replies
View Related
Apr 15, 2013
I'm using Autocad 2013. My problem is when i use "recover files & xrefs", all the files recovered are saved as a 2013 dwg version. As we all save our files here as 2007 version so when others opened the files they are getting some of the xref files missing in the drawing.
Is there any option to save files in a lower version when i recover?
View 2 Replies
View Related
Mar 26, 2012
Our office recently moved all of our project files to the dropbox. Now when I open files with xrefs I have to attach them back into the file. However, this doesn't happen for my coworker. She can see all the xrefs. How could I solve this? The file names or directory has not changed.
View 2 Replies
View Related
Feb 22, 2012
When ever i open a dwg file (it contains Xref files) it's take a long time to open... and i tried the same file to open in Autocad 2007, it's opened with in a second.... and also note that the Autocad 2007 installed in a Dual core pc with 4gb RAM.. and the 2012 is installed in Core i7 12gb ram with NVIDIA graphics card.. and it's 64 bit Windows 7 too.. When i try to open a file it's shows "Loading c:/ ....... base.dwg, etc.. ..
View 8 Replies
View Related
Jul 28, 2012
If I have several hundred drawings, For example;
Drawing1.dwg
Drawing2.dwg
Drawing3.dwg
..etc..
and several hundred Xrefs;
XCdrg1.dwg
XCdrg2.dwg
XCdrg3.dwg
..etc...
Now, I need to do the following;
attach XCdrg1.dwg to Drawing1.dwg
attach XCdrg2.dwg to Drawing2.dwg
attach XCdrg3.dwg to Drawing3.dwg
..etc...
What is the quickest method? Script? (I have approximately 800 drawings and 800 xrefs and for CAD management reasons they need to be individual drawing files)
View 3 Replies
View Related
Oct 21, 2013
I have recently installed Autocad 2014 and am experiencing very slow and jumpy files when using x-refs. The other machines in the office where I work are not experiencing the same problem and apparently my machine is more powerful.
Originally we thought this might be a network issue (as x-refs are being referenced through the network) but when I put the actual reference files on my computer, I experienced the same issue.
View 2 Replies
View Related
Aug 28, 2013
I have drawings which are occasionally transmitted to vendors, building officials and other parties. These drawings contain XREFs for the floor plans, roof plans, site plans, etc. Some of these XREFs contain layers with sensitive information the client does not want distributed to third parties.
If I'm just sending a PDF or plotting locally the sensitive layers are turned off or frozen and the PDF is plotted without layers. This is sufficient to protect the sensitive data. But if the third party requests a CAD file then I have a problem.
If I use Send to create a package of dependent files including XREFs they are included whole with all of the sensitive data on frozen layers.
If I Bind the XREF to a copy of the drawing for distribution the sensitive layers are still included as frozen layers.
In either case I am confronted with the task of deleting a large number of layers and we all know what a chore deleting layers with content can be. There has to be a solution to this problem, either an easier way to delete layers or a way to filter them in the binding process. Currently I am removing the XREF and making a block of the essential layers each time I have to make a distribution but these are large and complex drawings making this a chore as well.
Arguably this would be much simpler if AutoCAD had a better method for removing layers such as offering to a. move all contents to layer 0, b. delete all layer contents or c. cancel instead of just telling me I can't delete the layer because there are contents like we're still using R12.
AutoCAD 2010
AutoCAD LT 2013
Revit Architecture LT 2013
View 6 Replies
View Related
Apr 11, 2011
Installed AutoCAD 2012 3 days ago.
I have noticed the layerstates of the xrefs in my drawings are disappearing. I have to close and reopen the file for them to reappear. Can duplicate this error? At the moment i haven't been able to pinpoint when it happens, but its a first in my experience. I just installed it on another staff members computer so i will see if they get the same problem and report back.
OK. I discovered it occurs when you unload the xrefs, then reload them in the drawing. I was able to duplicate the same problem in a seperate drawing on another computer.
View 5 Replies
View Related
Aug 15, 2012
I'm using AutoCAD 2013 64 bit and MS Visual Basic 2010 Express (and Excel 2007), and I'm trying to write VB.NET code to list all xrefs attached to a group of drawings. The list of drawings is in column 1 of an Excel spreadsheet, and I want to list all xref filenames in columns 2 onwards - one row per drawing.
The Excel part works fine. I just wish it was as easy to extract information from DWG files.
I created a "Windows Form Application" project in VB 2010 and added a button to Form1. Clicking on the button runs the code.
When adding references I added "Microsoft Excel 12.0 Object Library" COM for Excel (as per Excel website tutorial), and "acdbmgd.dll" and "acmgd.dll" (both with Copy Local=False) as per AutoDesk .NET tutorial. But I got warning messages saying Acdbmgd.dll and Acmgd.dll target a different processor. Is this different to the Excel COM target processor, or do I need to change the target processor for the whole project (and if so, how)?
I tried adding "AutoCAD 2013 Type Library" COM reference instead of "acdbmgd.dll" and "acmgd.dll" which got rid of the target processor warning messages, and I could then open the dwg files successfully, but still the project crashes.
Here's the code so far...
Imports Excel = Microsoft.Office.Interop.Excel
' do I need to include Imports for AutoCAD here? Various websites list AutoDesk.AutoCAD... imports here, but AutoDesk isn't an available option when I try adding this here - maybe because I have the wrong references?
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
[Code]....
When I run the project I also get a "A first change exception of type 'System.Runtime.InteropServices.COMException' occurred in MyProject.exe" message. How can I rectify this?
Currently it crashes when it gets to the cadDwg.Database.Blocks line saying "Call was rejected by callee. (Exception from HRESULT: 0x80010001 (RPC_E_CALL_REJECTED))".
The xlsx file and the dwg files refered to in the xlsx file all exist. I've tried running it both with AutoCAD 2013 running and with AutoCAD 2013 not running. Still doesn't work
I feel so close, but what am I missing? I haven't downloaded the "ObjectARX for AutoCAD 2013 (32-bit and 64-bit)" from AutoDesk yet because (i) I have to get a licence, and (ii) it's a very large file, and (iii) I seem to be able to open drawing files without it, but just not access the data I want in the files.
I've got 1500+ drawings to look at by the end of the week. If this doesn't work it's back to AutoLisp (and maybe script files, but that's another headache).
View 9 Replies
View Related
Dec 9, 2013
I've got the second floor of a building which is an attic, which is over 2 different levels, each of which has its own xref. The roof is sloped. I would like to vary the cut plane in the same view, so that both xrefs are respectively cut at 1500mm above floor level. This would mean using 2 different cut planes, one for each reference.
View 1 Replies
View Related
Sep 12, 2011
We are using ACA2010 and use the project navigator to bring constructs into views then bring the views into sheets, which has been working great, but in the last few months we have gone to a sheet only to find that the view no longer contains the constructs. I was working on a project on Friday and the Site Plan view no longer had the site xrefed into it which I fixed, now today the Site Plan is fine but the Roof Plan is empty. This is not the 1st project this has happened to but it is the 1st time it has happened to me so I know nobody changed something they should not have. Is there a known bug in 2010 or something I should check. I don't want this to happen to the Floor Plan if it does I will lose all my dimensions.
View 2 Replies
View Related
May 1, 2012
If we have both the Xref and the File that it is referenced into open on one of the computers here and we reload, the Xref disappears. If we do an undo and close the Xref it reloads without problem.
I tried to replace the user profile from another PC that doesn’t have the problem, but it didn’t work. Is there a Registry setting that cause this behavior? All stations set to “Enabled with copy”
AutoCAD 2012 Arch.
View 9 Replies
View Related
Feb 21, 2011
I have an xrefernced drg , which i print from a layout/paperspace .I freeze certain layers using VPort freeze in layer properties and save the drg whenever i close and reopen the drawing the layers are thawed in the viewport again.
View 2 Replies
View Related
Mar 5, 2009
few of our systems are not loading the xrefs automatically. it show as UNRESOLVED until reload it manually. also this systems are not able to attach / overlay xrefs as relative path.
View 7 Replies
View Related
Jan 8, 2014
What is the best method to re-path x-refs in a project whose folder has been moved. We are talking about 60-100 x-refs here.The originals were created in ACA 2009 and were not pathed relatively; nor was Project Navigator used. We are currently using ACA 2014.
View 1 Replies
View Related
Nov 15, 2013
When an object in an XRef is tagged (and the object has an object based PSD) the tag will not update to reflect changes made in the XRef.
This can be fixed in the XRef by running the PropertyDataBrowser command and unticking the Overrides (shown in the leftmost tickbox when two tick boxes present).
Any automatic way to keep the tags up to date? I have attached my VB.Net code attempt for this. It almost works BUT the MultiViewBlock Overrides are ReadOnly.
View 1 Replies
View Related
Aug 3, 2011
Using ACA 2012 and Windows 7 Pro x64. I have a drawing with two viewports. In one I'm showing the electrical layers and the base floor plan. In the other I'm showing casework and the base floor plan. All of the layers are contained in one xref so some are frozen in each viewport. When I bind that xref using the insert method (bindtype=1) some of the electrical layers show in the casework plan. I've tried everything I know of but I can't figure out how to surpress this behavior. If I use bindtype=0 the problem goes away but I end up with ugly layer names.
View 1 Replies
View Related
Nov 4, 2011
I am having several problems with my xrefs. My two big problems are xrefs bringing in way more information than I want, and they are duplicating if they are selected, even when I have the xref layers locked.
My set up is this:
I have a plan file, a grid line file, an elevation file, and a section file.
I want all files to be referenced to each other. However, I do not want duplicates of any xref. For instance, in my section drawing, I will reference my plan file which consequently brings in any file that is referenced in the plan file. I know that I will get the circular reference warning and that I can click continue. However, is there any way I can just get "1 degree of nesting"?
Second, I cannot figure out how to lock my xrefs to prevent them from constantly being selected. My problem is that in my live drawing information, if I select everything within my window and an xref is in that window, it will be copied. I don't ever want to duplicate my xrefs, but I can't find a way to lock them (even when locking xref layers).
View 1 Replies
View Related
Apr 22, 2013
i have a large number of drawings that need xrefs detached and re-attached with the latest model xrefs, any way to do them in bulk rather than opening each individual drawing? the problem started a while back, when opening drawings, ACAD is not loading the latest 'saved' model when opening drawings...
View 5 Replies
View Related
Nov 11, 2013
most times i have to work on multiple drawings. i open these drawings all at once, but due to their size, it takes some time to open all the files. It would be nice if autocad would stay in the background while opening rather than forcing itself to be the focused programs after each file is opened. this really destroys the ability to multitask and honestly just seems arrogant at this point...
View 3 Replies
View Related
May 23, 2013
I modified a routine that processed xref names & paths w/in a set of folders. Thie original version would open each drawing & do its thing. THis would take about 20 minutes (aprroximately 90 files). I modified it to work w/o opening each drawing. This still takes about 20 minutes.
I would have though that not avtually opeing each drawing would dramitically decrease the overall time required to run this routine.
View 5 Replies
View Related
Jun 26, 2013
When I open a drawing in Autocad 2014, the drawing name opens as drawing1 or drawing2, etc. The files have been saved with a drawing name, however when I open them after saving they open as a unsaved file.
View 1 Replies
View Related
Mar 8, 2013
I get the attached when opening certain drawings which fails to load my acaddoc.lsp and so several useful lisps don't get loaded.
a successful drawing opening shows the following
IDSP Premium 2014 (mainly Civil 3D 2014 UKIE SP1 & Infraworks with some limited 3ds Max Design)
Win 7 Pro x64, 256Gb SSD, 300Gb 15,000 rpm HDD
16Gb Ram Intel Xeon CPU E5-1607 0 @ 3.00GHz (4 CPUs), ~3.0GHz
NVIDIA Quadro 4000, Dual 27" Monitor, Dell T3600
View 9 Replies
View Related
Feb 24, 2012
I have been given a new lap top plus the updated AutoCAD rev. 2012.Supposedly it is superior to my old laptop but... it runs slower, the mouse action is awful, it's like stirring cold porridge.
Anyway, I have spent the first week battling with various bits, trying to get it to look & feel like my previous laptop using 2010.
The big issue I have is upon start up. Rather than loading the standard AutoCAD "drawing 1" regardless, I want to have the browser open up so I can select the' previous drawings loaded on my last session or select a new drawing or browse folders to find the drawing I want.
how I managed to switch this on, back when I managed it on 2010 version.I have given up on running up & down the menus.
View 3 Replies
View Related
Jan 25, 2012
I receive this pop up message every time I open a drawing. How to stop this from happening??
Not sure what info you may need I'm running windows 7 with autocad 2010. I also have autocad 2005 loaded on the same machine and this box does not appear when opening drawings with it.
View 5 Replies
View Related
Oct 26, 2012
Im not talking about osnap, I am talkin about snap which limits your cursor. When I open exisitng drawings, some of them have snap turned on and it is bothering me. Is there a way to adjust your settings to always have snap turned off?
View 1 Replies
View Related
Jun 28, 2013
Rscently upgraded from xp to win 8, re installed autocad 2011.
Now when I try to open a drawing from within autocad my system crashes, I get a flash of horizontal lines then two blank screens.
Tried running narrator but just get static through the speakers, I have to hit the re start button to get back in.
I can open a drawing from explorer if autocad is not allready running, autocad starts and the drawing opens with no problems. but if I try to open another drawing we crash.
View 3 Replies
View Related
Sep 27, 2013
I just recently had to install 2009 from map 2008. When I open drawings last worked on and saved in 2008 and open them in civil 3d 2009, I get drawings that freeze up upon opening. Some will eventually open, showing errors. Others will never open and just freeze up.
View 2 Replies
View Related
Dec 11, 2013
I'm having an issue with my cad files that were done with Civil 3D 2012. When we made the jump to Civil 3D 2014 all my drawings seem to be corrupt. Now I have pipe networks in my base file. I have tired recovering and recoverall but no luck. I can send the CAD file.
View 1 Replies
View Related