AutoCad :: Losing Zoom By Executing The Plan Command?
Dec 6, 2013
when i work on geometry which is not in orthographic orientation i always prefer to create orthographic view of this, that's what i do :
Command : ucs
Command : z
Command : (selecting representative angled 2 points)
Command : plan
Command : c
than the whole zoom is lost , and i need to find again the portion , and save a view. i want to automate this process but before i automate it i want to know if there is a way to avoid zoom lost after executing the (plan) command?
View 7 Replies
ADVERTISEMENT
Mar 31, 2010
I have a county wide aerial image in jp2 format, connected through Data Connect and every time I pan or zoom it says "executing query". It is very slow getting around in the drawing (tracing over tree line, roads, etc.). I have a Windows 7 64-bit machine with 6 GB of RAM. Is there a setting I can turn off to make zooming, panning, changing layouts, etc. faster?
View 3 Replies
View Related
Sep 30, 2012
I am occasionally developing with ObjectARX 2013. The problem: A command being executed from a document needs to focus on another document. I am doing that as:
Application.DocumentManager.MdiActiveDocument = aGeneratedDrawing;
After this line, the focus is taken by the other document. But the command execution just stops without producing any visible error or catchable exception. Apparently, the document focus cannot be changed during execution of a command.
A solution: What worked in the end was displaying a .NET form inside the command, like:
Autodesk.AutoCAD.ApplicationServices.Application.ShowModelessDialog(aForm);
Then, performing the very same set of actions on a button click works flawlessly.
The question is: can using the form as a mediator be avoided? It is redundant there. I tried hooking to CommandEnded, executing the code as a separate command via Application.DocumentManager.MdiActiveDocument.SendStringToExecute, and also executing the code in a separate delayed thread. So far, only triggering the code via the form worked.
View 4 Replies
View Related
Feb 21, 2013
I have a macro that automatically creates a Detailed view on a sheet. It works on 2 input's:
- mouse click 1 (set's the target to be detailed)
- mouse click 2 (set's the location where the balloon should be)
The code works fine. But sometimes the user will start another command, or restart the same command, while it is still running. This off course gives all kinds of problems.
Is there a possibility in VBA to prevent the user to start another command while this command is running?Or is this problem a part of the clicking itself?
Here is my (it uses a Class Module called: clsGetPoint, see code below)
Sub AutoDetailedView() On Error GoTo ErrorManagment '(error handling 2013/02/18) 'step 0 Create a transaction. -> for 1 undo command Dim oTransMgr As TransactionManager Set oTransMgr = ThisApplication.TransactionManager Dim oTrans As Transaction Set oTrans = oTransMgr.StartTransaction(ThisApplication.ActiveDocument, "AutoDetailedView") 'step 1 Select a drawingView 'Set a reference to the drawing document. Dim oDrawDoc As DrawingDocument Set oDrawDoc = ThisApplication.ActiveDocument 'Set a reference to the active sheet.
[code].....
View 5 Replies
View Related
Dec 17, 2012
Im having a little trouble of late understanding how to undertake an action/ command if nil
what i do know id the following:
(setq TESTvar(findfile "acad.lsp"))(alert TESTvar)
this gives me the path of the acad.lsp, that is provided it actually exists, however because the acad.lsp is not compulsory it may indeed not exist meaning that the command prompt would return the NIL value instead of the pathname.
based upon that I would like to create a new acad.lsp file if not found by autocad.
View 3 Replies
View Related
Feb 1, 2012
is there BURST command or something similar for AutoCAD 2004 ? I need to explode blocks without losing text content
View 3 Replies
View Related
Dec 23, 2011
I have two questions about UCS creation/rotation and the AutoCAD PLAN command:
Question 1) I am creating a new UCS, rotating it based on user picks and saving it. The problem is that it saves the new UCS origin location, but it will not save the rotation. The code I am using was pieced together from a couple of different sources (.NET developers guide and code from Tony T from an old thread) How can I make the new UCS "save" the rotation as well?
Question 2) Once I have the new UCS created, I want to esentially use the AutoCAD PLAN command and rotate to the name of the new UCS that was just created. I cannot find ANY info anywhere on the internet on how to replicate the PLAN command using .NET. Here is the code I am using to create, rotate and save the UCS:
Dim acDoc As Document = Autodesk.AutoCAD.ApplicationServices.Application.DocumentManager.MdiActiveDocument Dim acCurDb As Database = acDoc.Database Dim acEd As Editor = acDoc.Editor Dim acEnt As Entity = Nothing Dim Zaxis As Vector3d Using acTrans As Transaction = acCurDb.TransactionManager.StartTransaction()Try ' Check for the exisitence of required blocks.
[code]....
View 9 Replies
View Related
Sep 4, 2012
After I choose named UCS, the view rotates accordingly. Sometimes having named UCS as orthogonal works but I still prefer having world axis as orthogonal in my monitor. How to change default?
View 2 Replies
View Related
Feb 12, 2013
I have a portion of my routine below. Basically I need the user to continue to loop through the command. They are picking Circles or blocks in the drawing and I get the insertion point, then insert a new block. However, whenever they try and use a transparent zoom or pan to move around the drawing when the promptentityresult is hit, it zooms back to the original location.
Here is a code....
<
CommandMethod("getpnt", CommandFlags.Session)> _
Sub findpnt()
Dim cnt AsInteger = 0
Dim NEWPNT AsPoint3d = GetInsPoint()
While cnt < 3
[Code] .......
View 5 Replies
View Related
Oct 27, 2011
My lot top mouse is not working no more with the zoom in and out command. I dont have and external mouse other than the one is install from factory on my lot top comp. It was working perfect, but i think i click something by mistake. I only learn enough to draw in cad but when it comes up to problems like this i do not know what to do. I was trying to copy a table with chairs from and other file and when i pasted to my drawing something happen so my mouse is not zooming in or out in my drawing .
View 5 Replies
View Related
Feb 12, 2012
Why we don’t have the command “zoom to layer” in the AutoCAD?
In particular cases, we need to zoom to certain layer. Is this possible in the AutoCAD? In the ArcGIS we do have this tool.
Software: AutoCAD 2014, AutoCAD C3D, AutoCAD M3D, Revit
Windows 7 (Ultimate 64 bits),
Firefox 20.0,
Kaspersky 2013.
View 3 Replies
View Related
May 23, 2012
This happens with a number of drawings, I believe all the files are very large approximately 8mb+. The issue is that by using the REGEN or the Zoom - Dynamic command, it will freeze AutoCAD. I will have to conduct a force shutdown than restart the program.
My question is; where do I start to determine what is the cause? Where do I find an error log?
View 1 Replies
View Related
Sep 20, 2011
is there a way to not include zoom features in the undo command.
for instance, if i delete something and than zoom out, i have to undo multiple times to complete the undo delete.
I want to completely eliminate zoom featues from the undo command.
View 9 Replies
View Related
Sep 4, 2012
I loaded 2013 Civil 3D and I customized my Ribbon with Zoom Commands I use frequently; everything looked fine...I changed the Workspace to Planning & Analysis and cutomized my Ribbon to include the Zoom Commands but a Button Icon for ZOOM_TO_POINT came up with a cloud & question mark. I went to look for the Icon Image & I don't see it. I made the mistake of changing the Icon to another hoping I could change it back but it's not there. I went to the 2012 verison & the Button Icon is there...first icon listed. Where are the icons in 2012 so I can drag & drop image into 2013?
The icon has a point symbol with a magnifying glass. I've checked other computers and the same thing. Can't find the Image Icon for ZOOM_TO_POINT. It shows up when you load the software but if you want to edit it...it's not there in the CUI Button Icons.
View 2 Replies
View Related
Jul 9, 2013
On some computers with AutoCAD 2013 SP2, pan and zoom launched with the middle mouse button is significantly slower than pan and zoom performed by launching the PAN or ZOOM command on the command line.
View 7 Replies
View Related
Jan 15, 2013
In CS4 I used the keyboard command, command+space bar, to zoom in to a area I selected with the marquee tool. I used this all the time. With CS6 the same keyboard command works differently. I don't have the option to select the area I want with the marquee tool. Is there a way to do it in CS6?
View 2 Replies
View Related
Mar 12, 2014
I've tried to nail down exactly when and why this happens but have yet to figure it out. Usually happens (but not all the time) when I'm using the path tool and hit command+z to reverse a node I've created, but then the cursor swtiches to the magnifying glass/zoom tool.
View 3 Replies
View Related
Mar 17, 2014
Command and spacebar has always allowed me to draw a marquee around what i wanted to zoom. not now? what am i doing wrong in inDesign6?
View 5 Replies
View Related
Nov 25, 2013
I have a problem while executing intersectwith between polylines and lines
the polyline execute intersectwith method referencing a line object with expandboth parameter value but sometimes , the intersection is not found
when using expandthis or expandargument values, I have no problems
I'am using VS2012 express and Autocad 2014
the attached project containt :
an image (result;png) showing my result
a dwg file (dessin3.dwg) , it is my test file
the source code for testing , (test" command)
it find all polylines and all lines in the drawing , compute the intersections between each couple and draw a dbpoint on each
View 3 Replies
View Related
Dec 21, 2013
Inventor 2014 crashes when executing revision table edit. This started after installing windows 7 SP1(x64) and SQL server 2012 express (x64).
View 1 Replies
View Related
Jun 30, 2013
SurfaceBody.GetExistingFacets( ToleranceIndex As Double, VertexCount As Long, FacetCount As Long, VertexCoordinates() As Double, NormalVectors() As Double, VertexIndices() As Long )
This works fine in VBA (Inventor 2014). But when I start using the same in VB.NET (VS 2012) all declaration as long shows as integer and fails on compiling. If I change to integer compile passes but fail on executing in Inventor 2014.
View 6 Replies
View Related
Aug 5, 2013
I have a template that I have created, in it I have a rule that changes the stock number and description based on which sheet metal rule is selected. The weird thing is it works correctly if the first sketch is a rectangle. If you sketch a circular shape and make that the face it will not work. It blanks out the values for the stock number and description.
I'm running Inventor 2014 update 2.
Format:HTML Format Version:1.0 StartHTML: 165 EndHTML: 33212 StartFragment: 314 EndFragment: 33180 StartSelection: 314 EndSelection: 314
SyntaxEditor Code Snippet
DimiPropValAsString=""
DimiPropDesAsString=""
SelectCaseSheetMetal.GetActiveStyle()
[code]...
View 1 Replies
View Related
Feb 22, 2012
The AutoCAD doesn’t show the “intersect osnap” at certain zoom!
The “intersection osnap” between a “hatched rectangle” and a “DASHDOT2” line appears and disappears depending on the amount of zoom!
As I zoom out the “intersection osnap” appears but when I zoom in, it disappears
Why the "intersection Osnap" should disappear as I zoom in?
Software: AutoCAD 2014, AutoCAD C3D, AutoCAD M3D, Revit
Windows 7 (Ultimate 64 bits),
Firefox 20.0,
Kaspersky 2013.
View 2 Replies
View Related
Feb 27, 2013
I am working on getting some settings done, moving from 2008 to 2012. How do you set the Middle Mouse Button (wheel) to either Zoom All or Zoom Extents when you double click it? I thought it was set in the Main CUI file.
View 9 Replies
View Related
Jan 8, 2013
My keyboard has a zoom key with + and - selections. I use to use this key in drawings to zoom in and out when in the AutoCAD application when we had Windows XP. Now that I have Windows 7 I can't do this. I can't find out how to assign this key on the Microsoft Keyboard interactive software either. I have the other keys assigned as desired.
Can I still use my keyboard zoom key to zoom in and out in drawings? If so, how do I set this up in AutoCAD, or do I need to do this through a Microsoft keyboard application?
View 6 Replies
View Related
Apr 5, 2013
I am having problems with zoom, pan and rotate at high zoom level. The movements becoming jerky and delayed. But for whatever reason the problem exists in some assembly files and not in the others.
View 9 Replies
View Related
Jan 26, 2013
PS not letting me edit some random commands before executing them, including Duplicate, Fill, Print Preview, Stroke...possibly others I haven't discovered. When I click the dropdown choice, an edit window used to let me tailor pixel widths, color, etc. (I know, [it's what] 'edit' means). Now, the little eyedropper icon replaces my cursor, all top menus are grey except 'View' and 'Window', I get that awful 'doont!' sound, and my only option is to just hit 'Enter' and it executes the command with whatever preferences I last set before this problem, usually of no present use to me. I have relaunched PS, restarted the computer with no other tasks and relaunched, and impotently shaken my fist at the screen to no avail.
View 1 Replies
View Related
May 30, 2012
I am working in a project where I need to represent the reflecting ceiling edges in the plan view. I put the first floor plan as underlay, and selected the RCP projection but I don't see the dropped ceiling lines to select them with the linework command. I have done every thing possible with the view range but I don't see the lines.
View 7 Replies
View Related
Dec 6, 2012
I've a Photoshop droplet with set of actions like:
Open
Fit image
height:180
width:180
Save
as jpeg
quality:11
Close
It does it's work as expected but once the actions are executed on all the images in a folder, I'd like to close the Photoshop as well, which looks tricky in Photoshop droplet. Is there anyway to close Photoshop application at last by action? Or is there any option so that droplet actions will be executed without opening the Photoshop window.
View 4 Replies
View Related
Feb 19, 2013
Execute a picture from Lightroom to Photoshop das not work. Picture is not opened in Photoshop.
View 1 Replies
View Related
Feb 15, 2006
I use Photoshop CS2 to create Designs for webpages. These designs have pixel-exact elements, e.g. a 1-pixel-line from top to bottom.
Now when I zoom in (>100, then I have sort of anti-alias, so that the 1-pixel-line isn't only one blue anymore, but it has different blue tones. I guess for photo manipulations etc. this anti-aliasing zoom is great, but for webdesign it sucks because I don't know if only the zoom make the line "corrupt" or if it really is corrupt.
Is there a way to change this zoom?
View 3 Replies
View Related