AutoCAD Civil 3D :: Open Autocrat Without Drawing 1?
Jun 18, 2012
I don't know how I had done this before. When I had a previous version of autocrat I could Open autocrat and it would not Open drawing 1. I'm wanting to know if it is possible to have this feature again in civil 3d. Both in 2012 and 2011 civil 3d.
View 3 Replies
ADVERTISEMENT
Jan 2, 2007
After a recent crash civil 3d now asks me to type in the full path and file name for a file i want to open after selecting the open option on the menu or toolbar.i know there is a variable that requires re setting but i don't know how.
View 9 Replies
View Related
Feb 28, 2012
In the last couple of days civil3d has started not opening a drawing as the active drawing
View 1 Replies
View Related
Nov 6, 2012
I have my CUI properties set to start on model space, but everytime I open a new drawing it starts on the layout1 tab. I would like new drawing to start in model space. Just a preference thing.
View 1 Replies
View Related
Jan 9, 2014
I'm running Autocad 2013 Civil 3d, when I open a particular drawing the cursor turns to a circular shape as if it is downloading something, but it is actually not loading anything. This circular cursor does not let you do anything with the drawing, you just have to keep hitting esc until it gives you a fatal error message that says "FATAL ERROR: Cannot write to undo file (probably disk full)" and it kicks you out of autcad. How to get rid of this ciruclar cursor?
View 6 Replies
View Related
Jun 25, 2012
I have been using the sheet set manager with very few problems for years until - you guessed it - I was upgraded to Windows 7 OS v6.1 and Civil3D 2012 IDS.
Up until then, I was able to open layouts in different drawing files through the sheet set manager while in an open file. Now, I get an error message (see attached) and have to close the file I'm in to open the other.
I can open files through the regular file open command and have more than one open at the same time, but it takes away the convenience of using the sheet set manager to avoid having to browse to the desired sheet layouts when copyclipping sheet layout drawing elements from one file to another.
I have studied every sheet set system variable to see if that was the problem, but could not find an answer. I have the same problem in Civil3D 2010. It happens to new and existing sheet sets in both versions and sheet sets made before the Windows update.
View 8 Replies
View Related
Oct 15, 2010
The screen flickers when I move the mouse around an open drawing. I just applied the latest patch to Civil 3D 2010. It was not doing this before the patch.
Have Quadro 3500 video card. Updated the driver for that with no change.
Have a Logitech wireless mouse, M310. Up dated the driver for that with effect.
Changed to a wired mouse, no change.
Is there a setting in Autocad where I can set the refresh rate so that it does not refresh while moving the mouse. Or at least slow the automatic refresh rate down?
View 6 Replies
View Related
Jul 29, 2012
if I open a drawing with DocumentManager.Open("drawing.dwg", false) and it is already open (or the user has no rights to write to it), the drawing is opened in READONLY mode without warning.
Is there way to check if DocumentManager.Open("drawing.dwg", false) will open the drawing normal or READONLY?
View 6 Replies
View Related
Jan 7, 2013
How do I get my Sheet Set Manager to open up each time I open a CAD drawing? I turned it off and can't remember how to turn it back on. I use command SSautoopen, set to 1 but doesn't alway work. Sometimes if I close AutoCad and reopen it I can got to drop down menu and click on .dst extension and it will open but if I close out of it it won't open again unless I restart AutoCAD. I thought I used a command from the Express Tool menu but can't find it.
View 3 Replies
View Related
Nov 10, 2011
I downloaded multi-batch as someone here said they like it for batch plotting. Once installed, however, it has changed a setting in AutoCAD. I can no longer open more than one drawing at a time. If I have a drawing open and try to open another drawing it asks me if I want to save the current open drawing.
I can not close a drawing either without exiting AutoCAD or trying to open another drawing. I un-installed multi-batch but it did not fix the problem.
View 4 Replies
View Related
Aug 26, 2012
Once I have the dwg open how do I get to the database?
Dim AcadApp As Object = Nothing Dim AcadDoc As Object = Nothing Try AcadApp = GetObject(, "AutoCAD.Application.18") Catch ex As Exception AcadApp = CreateObject("AutoCAD.Application.18") End Try AcadApp.Visible = False Try AcadDoc = AcadApp.Documents.Open("C:UsersPAULDesktopB-03-J-H135.dwg", True) Catch ex As Exception Exit Sub End Try Dim MyDb As Database = AcadApp.DocumentManager.MdiActiveDocument.Database
View 4 Replies
View Related
Nov 28, 2012
Recently upgraded to Civil 3D 2013 and drawings opened up fine. Now today any drawing that opens shows the plan view as last saved but then after loading takes the drawing and shifts it into a 3d view similar to a crossection. Is there a setting somewhere that has been changed? I noticed after a windows 7 update was preformed.
View 7 Replies
View Related
May 3, 2012
I have survey points in drawing A. I want those points to be available for drawing B. How do I do this?
(Coming from LDD where points were project based not drawing specific).
View 4 Replies
View Related
Mar 1, 2011
I have autocad civil 3d 2008 in my pc. From last 2 days I got a different problem i.e. when I am selecting open / save command from File menu graphical file select explorer is not opening just message in the command window . Previously I used to select files using graphical file explorer.
View 6 Replies
View Related
Feb 22, 2005
how to test to see if a drawing is already open inAutoCAD using VBA and if it to make it the active document?I have a VBA macro to open xrefs by by just picking them in the drawing butI need to test to see if the drawing may already be open to avoid openingthe drawing a second time in "Read Only" mode.
View 9 Replies
View Related
Sep 1, 2013
Error 1 'open' is not a member of 'Autodesk.AutoCAD.ApplicationServices.DocumentCollection'.
View 5 Replies
View Related
Dec 7, 2011
When I try to open this drawing I get this error "Internal error in persistence operation (Can't load segment PmBRepSegment via a RSeRef when loading segment DLSheet35DLSegment)".
Is there a recover command in Inventor 2012 similar to the recover feature in Autocad?
View 2 Replies
View Related
May 5, 2013
I have got a reducer with a size of 4" to 3" dia and a length of 5". I need to open and draw its dimensions. I need the dimensions as highlighted in the sketch.
View 3 Replies
View Related
Aug 15, 2013
In one of my application I want to open a drawing and make a new one.That doesnt work. So I copy following code from the
[CommandMethod("NewDrawing", CommandFlags.Session)]
public static void NewDrawing()
{
string strTemplatePath = "acadiso.dwt";
DocumentCollection acDocMgr = Application.DocumentManager;
acDocMgr.DocumentActivationEnabled = true;
Autodesk.AutoCAD.ApplicationServices.Document acDoc = DocumentCollectionExtension.Add(acDocMgr, strTemplatePath);
// Alternatively: Autodesk.AutoCAD.ApplicationServices.Document acDoc = Application.DocumentManager.Add(strTemplatePath);
acDocMgr.MdiActiveDocument = acDoc;
}
At the end the MdiActiveDocument is still the drawing which where open before a new document is created.
BTW: I'm using 2013 and 2014. This method works fine in 2010.
Whats the different between 2013/ 2014 and 2010.
View 9 Replies
View Related
Apr 18, 2012
I have working code for opening a cad drawing from an external program. That is perfect.
how can I force a drawing that is NOT readonly to open as readonly from outside cad.
View 9 Replies
View Related
Nov 15, 2012
using dwgDB.saveas on a drawing database that the user has open but NOT current on his screen?
For example, the user has DWG1 open and DWG2 open and currently active, my program modifies DWG1 (inactive) and when the program tries to run...
dwg1DB.SaveAs(filename, true, DwgVersion.Current, dwg1DB.SecurityParameters)
it errors with an elock violation, even though I lock the document with dwg1DOC.LockDocument before I try to save and unlock it after.
The same code runs fine on the current document so at this time I just ended making the other document current just to save it then switch back to previously current document.
What am I missing to save a document that is open but not current?
View 3 Replies
View Related
Feb 22, 2013
I'm in AutoCAD 2013. I've been working on a drawing everyday (was just working on it yesterday), but can't open it now. I just get a blank gray screen when I open if from within AutoCAD. When I open it from my computer drive while AutoCAD is closed, AutoCAD opens and I get "Drawing1.dwg." I've tried the RECOVER command, but I don't get a response. I tried RECOVERALL command which let me choose a file to recover, but it responded saying it could not recover the drawing.
View 6 Replies
View Related
Jul 12, 2013
When I create a drawing with Mtext and my co-worker opens the drawing the width of the box defaults to 0 and the grips to enlarge the box are all snapped to the insertion point. How do we get the text boxes to stay the same??
View 8 Replies
View Related
Sep 4, 2013
I have this macro,but it opens the folder not the drawing,
^C^C-filedia;0;open;"C:/ADT_2008_drawings/John Becker Construction/Chart7.dwg"
View 3 Replies
View Related
Jun 13, 2013
i use Inventor 2012 and Vault Collaboration 2012, and I often find drawing template cannot be open. with error message The template file is open. Please close it and try again
in fact, I did not open the template file.
View 3 Replies
View Related
Jun 26, 2012
one of the drawing i forgot my password. Now i am confuse because this drawing is very important in front of me. Here is the attach....my drawing.
View 9 Replies
View Related
Jan 22, 2013
Here is what's happening:
When I open more than one drawing the second drawing that I open does not show (but is opened) I see the first drawing that was already open. If I open a third drawing, the same thing happens the first drawing shows ( but the second and third are both open).
Is this something to do with changing the Quick View Drawings Order?
View 1 Replies
View Related
Apr 9, 2012
I am trying to open a drawing file programmatically(automatically).
So for example.
If I have a file name "test.dwg" and run some custom command like 'openfile", AutoCAD opens "test.dwg" without any prompt.
The following code DOESN'T do the job I want.
Application.DocumentManager.MdiActiveDocument.SendStringToExecute("OPEN", true, false, true)
The problem is I have to hit enter after the above code is run.
View 7 Replies
View Related
Jan 2, 2012
Why is it that when we copy and paste a drawing from LT Autocad 2012 to powerpoint 2003, other versions of Autocad users are unable to open up when they double-click on the drawing?
View 4 Replies
View Related
Oct 30, 2013
I would like to be able to collect information from a drawing via a sub-form and then insert a block with attributes (populated with collected info) into another open drawing. The insert operation would be launched from a button on my sub form.
Is this possible?
From the code below I attempted a test to simply select a point from another open drawing but was not successful. However, once I closed both forms the target drawing file is activated.
Private Sub Button2_Click(ByVal sender As System.Object,
ByVal e As System.EventArgs) Handles Button2.Click
Me.Hide()
Dim docMgr As DocumentCollection = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager
Dim i As Integer = 0
For Each doc As Document In docMgr
[Code]....
View 4 Replies
View Related
May 15, 2012
I have a palette on my drawing which is sitting nicely (closed) on the left hand side of my screen and opens when my cursor hovers over it, is there any way that I can stop it from doing this and only open when I click it?
When I'm working in MS and this thing opens when I go near it.
View 6 Replies
View Related