AutoCAD 2010 :: No Refresh After Closing Drawing Until Application Window Is Resized
Apr 10, 2012
My AutoCAD 2012 installation has been doing this for a while, but I don't remember it always doing this:
After I close a drawing (if it is the last drawing open), by using either the "close" command or by clicking the "x" on the window, instead of going to the generic gray-stripe background it just shows what the drawing looked like before close. This keeps messing with my head, as I think AutoCAD has just stopped responding.
If you look closely, though, you can see that the "AutoCAD" and "Autodesk" labels appear on the drawing, but I don't immediately notice this because my drawings are more complex than the sample drawing I've attached.
See images below.
However, when I manually resize the application window (either by restoring or maximizing, or by draging the window edge, the application window refreshes to show the proper generic gray-stripe background.
System specifications: AutoCAD 2014 64-bit SP1, Windows 7 64-bit SP1, Intel Core i7-2600K, AMD FirePro V4900
16GB RAM, Crucial M4 SSD, 3 Dell Monitors (2 30" 2560x1600 & 1 20" 1200x1600)
View 9 Replies
ADVERTISEMENT
Jul 20, 2010
I am operating 3D Civil with Windows 7, 64-bit system.
Most of the time when I close a drawing, particularly when I have two or more drawings open, the program closes down with the following message "Autocad Application has stopped working - Windows is collecting more information about the problem"
I then have to restart 3D Civil
View 7 Replies
View Related
Jun 25, 2012
My AutoCAD closes down when closing a drawing (yes I AM selecting the right x). It happends with larger drawings and more often in layouts.
View 2 Replies
View Related
Mar 21, 2012
My ACAD 2010 LT crashes about 75% of the time whenever I close a drawing. I’m running Windows 7. System info below:
OS Name Microsoft Windows 7 Professional
Version 6.1.7601 Service Pack 1 Build 7601
Other OS Description Not Available
OS Manufacturer Microsoft Corporation
System Name CAD-PC
System Manufacturer Gigabyte Technology Co., Ltd.
System Model GA-790XTA-UD4
System Type x64-based PC
[code]....
All updates that I can find have been downloaded and installed.
View 7 Replies
View Related
Jul 24, 2012
Sometimes, when I have two or more drawings open in the same instance of AutoCAD, another tab opens up on the Windows Taskbar. Here's the scenerio; I have two drawings open. On the task bar, Autocad's icon shows two drawings open. Somewhere while drawing, AutoCAD will start bogging down, especially when switching drawings. On the Window's Taskbar, it will now show three drawings open. Two of which will be the same drawing. There will only be two drawings open. The drawing which is currently on top for editing will be the one that shows up twice. If I change to the other drawing, it takes a really long time to swap. Sometimes, it will sit there for a minute and then swap back to the other first drawing on it's own. I try going back to the second drawing again, and the same thing happens again. The only way to stop this from happening is to completely shut down AutoCAD and restart it. I think it has something to do with the ribbon. And I also notice it more often after doing a CopyBase, but not always.
View 1 Replies
View Related
Oct 12, 2012
I have a prob with my system in that when I close a drawing with a 3d view in a viewport and reopen it, I lose the 3D view and it flattens out, maintaining the view but losing all perspective. I can easily restore the saved view, but it is bit irritating.
View 4 Replies
View Related
Jul 12, 2013
On my PC running Windows Vista Ultimate with an Nvidia GEForce GT 545 video adapter, when I attempt to resize the Open File window in CorelDraw X5 to see more of the file information, the window starts rapidly flashing and opens a stack of same window. System response is slowed when trying to close or cancel the window, and it will display "Not Responding" for several seconds before it clears. CorelDraw X5 itself also has trouble closing. I repeated this 3 times and had the same thing happen, so it is not a random event. Not sure whether it is CorelDraw conflicting with the Nvidia driver or something else. The only workaround I found was to use Windows Explorer to view the additional file information, such as date modified or other metadata.
View 1 Replies
View Related
Nov 12, 2009
I have a drawing that will not open the objectscale window (annotative scale add/delete). I either select from the right-click menu, or type in objectscale, and nothing happens. I opened a new drawing and the function worked fine in that one, just not in my existing drawing...
View 2 Replies
View Related
Nov 15, 2012
I am looking for an example autocad drawing of the connection between a window and a wall. In other words, a drawing which shows how the window is attached to the wall.
Does not matter what kind of window, materials etc.
View 7 Replies
View Related
Sep 13, 2011
An example is when I'm drawing a box, line etc and attempt to type "@5,-5", AutoCAD somehow jumps to a window on the side and if I don't notice will restore the window I'm working in and not complete the command I typed ("@5,-5" in this case). If I do notice in time, then I have to pres ESC about 3-4 times, which will then have me back on the command line with the text "@5,-" already typed (as if that was were I paused while typing??). The attached picture shows the dialog box on the top left, and the command line as if I've only typed "@", when after pressing ESC as mentioned the full "@5,-" text becomes visible on the command line?
Also, as a note: I've already ruled out that I'm pressing other keys that could possibly cause this...
I'm running AutoCAD (Mechanical) 2011
View 9 Replies
View Related
Nov 26, 2013
My code mirrors a selection by either the x-axis or the y-axis. It is working fine. Except, the drawing shows the result, when I move my cursor to the active dwg.
How can I refresh my drawing, direct after modification of a block? I use the code below to mirror a selected block by a button on a docking pallette:
private void btn_Vertical_Mirror_Click(object sender, EventArgs e){(new Modifikation()).Mirror("v");}
the code, which is called is:
public void Mirror(String axis = ""){//---------------------------------------------------------------------------------------------------------------------------------------Document dwg = Application.DocumentManager.MdiActiveDocument;Database db = dwg.Database;Editor edt = dwg.Editor;//---------------------------------------------------------------------------------------------------------------------------------------try{Auto
[code].......
View 6 Replies
View Related
Jan 3, 2012
Is it possible to refresh drawing content when modal form is running?
I placed sample project in attachment.
There is simple form with only one button.
Private Sub Button1_Click(sender As System.Object, e As System.EventArgs) Handles Button1.Click Class1.DrawLineOnScreen() End Sub
After button is pressed, application prompting user for picking 2 points, and draw a line (based on picked points).
Public Shared Sub DrawLineOnScreen() Dim editor As Editor = Application.DocumentManager.MdiActiveDocument.Editor Dim pFirst As PromptPointOptions = New PromptPointOptions("First point: ") Dim rFirst As PromptPointResult = editor.GetPoint(pFirst) Dim pSecond As PromptPointOptions = New PromptPointOptions("Second point: ") Dim rSecond As PromptPointResult = editor.GetPoint(pSecond) If rFirst.Status = PromptStatus.OK AndAlso rSecond.Status = PromptStatus.OK Then Dim line As Line = New Line(rFirst.Value, rSecond.Value) Dim tr As Transaction = Application.DocumentManager.MdiActiveDocument.TransactionManager.StartTransaction Using tr Dim modelSpace As BlockTableRecord = tr.GetObject(Application.DocumentManager.MdiActiveDocument.Database.CurrentSpaceId, OpenMode.ForWrite) modelSpace.AppendEntity(line) tr.AddNewlyCreatedDBObject(line, True) tr.Commit() End Using End If End Sub
Problem is that line had been added to transaction (to Model Space block table record) but nothing change on a drawing. Line will appear on a drawing after closing the form.
In opposite situation, without using modal form (only console) everyting works fine.
<CommandMethod("DrawLine", CommandFlags.Modal)> _ Public Sub DrawLine() Class1.DrawLineOnScreen() End Sub
View 2 Replies
View Related
Feb 8, 2012
Why do the dialog boxes and right click menus disappear underneath AutoCAD 2012? It does not happen every time, only most of the time. I can roll the mouse pointer over were the box or menu is supposed to be and some of the buttons and textboxes will reappear but not all.
View 3 Replies
View Related
Nov 16, 2011
I'm trying to react to the AutoCAD application window being resized, that reaction is to move a form so that it stays in the bottom right hand corner of the AutoCAD application window. However, I cant seem to find a way to react to an AutoCAD application window resize event.
View 1 Replies
View Related
Jun 22, 2013
Why can't files opened from AI CC created in AI CS4 be reopened after closing the window?–They reopen only if you quit and relaunch AI CC. Why can't anything be copied or pasted from keyboard commands or drop down menu open in AI CC? Why can't a new window be created in AI CC–only receive error code ID-1(Can't create a new illustration. Problems occurred while saving the print file.).
View 2 Replies
View Related
Aug 9, 2012
About 50% of the time, I get a crash when closing a drawing. When this happens, I get the following message: "AutoCAD LT Application has stopped working". This has been going on for sometime now and sometimes I am prompted to report the error, sometimes not. Everything shuts down, so if I have several drawing files open, I will loose any changes made unless I do a hard save for each one (which I have gotten used to doing).
I have the same problem with my license of Architectural Desktop 2004. My version of LT is 2011, running Windows 7 Pro, 64 Bit.
View 2 Replies
View Related
Oct 23, 2012
Screen does not refresh and shows geometry from one of the viewports to the side, as you pan the window.
Geometry stays on when you go to model space.
Was working ok until Autocad suggested upgrading video performance.
Will not work even after downloading lastest video driver from NVIDIA
Acad 2012
Dell E6530
NVIDIA NVS 5200M
64-bit
View 5 Replies
View Related
Sep 30, 2013
I am using Inventor 2014. I am receiving an error while closing a drawing. The error says "One or more drawings are being computed and are currently in raster state. The document(s) may be closed and pending updates will resume when the document is reopened.
Do you wish to continue closing?"
The drawing shows outdated views which I tried updating but they do not update. When I am trying to print the drawing, it shows incomplete drawing.
View 8 Replies
View Related
Feb 13, 2013
The program shuts down every time I save and close a drawing; this way I am loosing any other drawing that is still open.
I am working on a 64bit Widows7.
View 4 Replies
View Related
Jul 31, 2012
I am using Windows 7 64 bit laptop. When I close a drawing just after saving in AutoCAD 2013 64 bit, the program crashes. This will happen with one drawing open, or several. I also had this problem with 2011.
I have been using AutoCAD for 16 years and never had this problem with previous versions on earlier operating systems.
View 9 Replies
View Related
May 28, 2013
2012 LT about a year old, just recently started shutting off/closing unexpectedly during a drawing command (pline, copy, offset etc...) or when using numeric keys on keyboard. seems like everything else works ok. no error messages. nothing. just dissapears.
View 6 Replies
View Related
May 30, 2008
Quick one on Dynamic blocks.... we are using Dynamic blocks more and more as a company, we are finding that when in a drawing which contains lots of dynamic blocks, then go into Dynamic Block Editor - amend the block - Then when closing the block Editor to get back into the drawing the drawing goes really slow untill we close it down and restart it.
Is there a setting we need to change OR is there something obvious that we are missing. i.e should we be minimizing the amount of dynamic blocks in our drawings or uncomplicate them?
View 5 Replies
View Related
Oct 28, 2013
I am using Autocad 2014 Architecture and have a 3D drawing with approximately 70 surfaces. If I close the drawing and reopen it 10 to 15 of the surfaces has disappeared. What this could be?
View 9 Replies
View Related
Feb 6, 2012
Is there any way to close a drawing that is open on another user's computer, from my computer?
We have a problem with engineers opening a drawing, printing and marking up that drawing, then taking the print to a drafter to make changes to the drawing, but failing to close the electronic drawing file.
Normally, we just call the engineer and ask them to close the drawing. If they were away from their desk, we could just walk over and close the drawing ourselves. Now that's not possible. We have a new security protocol which locks the user's computer after ten minutes of non-use. We each create our own password which we're not supposed to share with others. I just want to be able to log into the server and close a drawing that someone else has open.
View 9 Replies
View Related
Dec 15, 2011
I have problem with 3 users from about 75. When using the publish command inAutocad 2010 (1 user) and Civil 3d 2010 (2 users) a temporary copy of the drawing is opened while the particular layout is being published but on completion this temporary copy of the drawing is not being closed. This is leading to problems when a user has lets say 5 drawings open that require publishing. When finished the user has 2 copies of each drawing open and sometimes my select the wrong drawing when making further changes.
I have tried a repair on Autcad but that did not work.
View 3 Replies
View Related
Mar 25, 2013
i wanna make a gate leaf opening and closing , is that even possible in autocad 2011 , like an animation , cant find anything on youtube tried to do it with camera etc etc.
View 2 Replies
View Related
May 29, 2012
This is an annoying change from acad 2007 to acad 2011. Every time I start and end the Mtext command, as the dialog box opens and closes, the screen "shudders", or "jumps" a little. It is hard on my eyes. I have explored the MTEXTFIXED and the MTEXTED commands, but I can't get it to settle down.
View 1 Replies
View Related
Aug 31, 2010
If I have several drawings open at the same time and have done work to some of them, at the end of the day I just pick the AutoCAD application "close" button (the "X" in the top-right corner of the window) and I'm prompted "Save changes to <drawing>?" for each of the drawings.
Unfortunately, most of the times I do this in AC2011, AutoCAD crashes. The next time I open AutoCAD, it initiates the recover but all the changes have been saved in the *.dwg file.
I know this is not the best way to save and close drawings but it has never been a problem.
View 9 Replies
View Related
May 13, 2012
How do I get the screen to refresh properly when drawing a line larger than the art board when the screen scrolls? Everything turns white in CS6, CS5 and CS4.
View 12 Replies
View Related
Jul 12, 2013
I like the openness and ability to click my desktop behind the image I'm working on. I know how to turn it off, but how do I KEEP it off? Every time I close and reopen photoshop it's back on, and I saved my workspace to see if that would result in any changes but it didn't. Didn't ever run into this issue on CS6.
View 3 Replies
View Related
Sep 6, 2008
I have CS installed on my laptop. running WinXPPro, and unfortunately a few weeks ago CS started to behave badly. The program appears to load fine but 1 or 2 seconds after finally loading the program disappears from both the Application list and the window. The Task manager continues to show the Photoshop.exe process but its doing nothing. I have deleted preferences, I have re-installed, I have removed FlashPlayer (a CS3 problem sounded similar) all to no avail. Oddly enough ImageReady CS performs fine - it just doesn't give me the features I need access to do my work.
View 3 Replies
View Related