AutoCad :: How To Copy A Layout Multiple Times Inside A Sheet Set
Feb 3, 2014
I am trying to copy a layout tab inside an AutoCad file into a sheet set I created. All folders and sub folders are created and setup. What I need is to be able to copy the same layout under different sub folders inside sheet set manager.
To explain this better, I have a sheets set with all different departments inside our company (ex. CNC Dept., Bending, Machining, Welding, etc.). Some drawings have information for CNC, Welding and bending dept. Therefore I need to be able to copy the same drawing layout multiple times under each dept folder.
How can I do this? It only allow me to drag and copy the file once. I wont be able to drag it again under another folder.
View 4 Replies
ADVERTISEMENT
May 9, 2012
Trying to find out how to copy an object multiple times in a curve. I've used microstation and it does it easily and just wandering is AC has the same type funtion without going throught 6-8 steps for each copy.
View 9 Replies
View Related
Jul 12, 2012
I have an exisitng drawing with 80+ layouts tabs that I would like to copy to a new template drawing.
I tried to use design center but to no avail.
How can I do this?
Running Windows 7 Pro
3.20 GHz
12GB Ram
AutoCad 2013 64bit
View 2 Replies
View Related
Aug 23, 2013
I have a keyboard shortcut for Copy (see directly below). This command doesn't copy multiple. But if I type "Copy" at the comment prompt (AutoCAD 2013) the copy multiple is the default. Copymode is already set to "0".
(DEFUN C:C()
(setvar "SNAPMODE" 1)(COMMAND "_COPY")
(PRIN1)
)
View 4 Replies
View Related
Sep 1, 2011
I have this script that basically makes a shape expand by adding an outline, conveting the outline to an object, and then welding the whole thing together.
I have the script set to execute with hotkey ctrl+numpad+
The odd thing is, when I run it once, it seems to work fine and only one object is left, but when I hold down ctrl and press numoad+ over and over again, it seems to produce a new copy of the object everytime.
I'm not sure why this is happening, but I need to get it to stop.
Sub Expand() EventsEnabled = False 'Dim vars Dim c1 As New Color Dim OrigSelection As ShapeRange Dim OrigColor As Shape Dim width1 As Double Dim height1 As Double Dim minSize As Double Dim Thickness As Double 'copy color of current selection Set OrigColor = ActiveShape If OrigColor Is Nothing Then Exit Sub If OrigColor.Fill.Type <> cdrUniformFill Then Exit Sub c1.CopyAssign OrigColor.Fill.UniformColor 'get thickness to increase by Set OrigSelection = ActiveSelectionRange OrigSelection.GetSize width1, height1 If width1 <= height1 Then minSize = width1 If width1 > height1 Then minSize = height1 Thickness = minSize * 0.035 OrigSelection.SetOutlineProperties Color:=CreateRGBColor(0, 0, 0) OrigSelection.SetOutlineProperties Thickness, ScaleWithShape:=True 'weld Dim s1 As Shape Set s1 = OrigSelection(1).Outline.ConvertToObject Dim s2 As Shape Set s2 = s1.Weld(OrigSelection(1), True, True) 'auto reduce 's2.Curve.Nodes.All.AutoReduce 0.001 's2.Fill.ApplyUniformFill c1 'delete remnants OrigSelection.Delete s1.Delete 'OrigColor.Delete EventsEnabled = TrueEnd Sub
View 5 Replies
View Related
Jan 6, 2014
A few of the computers are having problems with the Copy/Paste function. They had it working a few times and after that, it stopped working (can't paste after copying). Have tried restarting autocad and the computer but the issue is still there. Have also tried updating the service pack to the latest version. It works for a while and stopped working again.
View 5 Replies
View Related
Nov 22, 2013
I'm copying 1 object, multiple times. Yes I know how to multiple copy.
The problem is this.
The object I'm copying will have varying distances between each copy e.g. , 50, 100, 90, 150, 140, 100, 190 so on and so forth.
Is there a way in LT to copy relative to the last object placed?
View 5 Replies
View Related
Aug 8, 2011
I'm using Autodesk Map 3D 2006, it's a new install. I am trying to import an ESRI .shp file with the object data, but have only been able to successfully import it once. When I try again (even after restarting the program), I keep getting 0 objects processed and no linework imported, even with new drawings. I also got 2 error messages at one point: 1900 - about having coincident points and a can't transform object error.
View 1 Replies
View Related
Dec 2, 2013
I have an issue where an addin loads once the first time Inventor is opened. If the addin is unloaded and reloaded via the Addins dialog and no documents are open it loads once. If the addin is reloaded while a file is open is reloads twice.
I came to the conclusion it is loading multiple times because the it seems to go through the Activation method of the addin twice. When is the Activation method called during loading an addin?
Inventor Addins
FlowTools for Inventor
ilxButton Panel (Buttons for iLogic Rules)
View 2 Replies
View Related
Jul 15, 2011
I have a SelectionAdded event handler that reacts three times when selecing a single block and once when deselecting it.
If there are two blocks in the drawing but only selected one it reacts 5 or 6 times.
And it reacts every time I pass the mouse over the selected block.
Is there any way to sidestep the events in the handler so that AutoCAD doesn't grind to a halt if I have multiple blocks in the drawing. And decide to move my mouse over all of them?
View 5 Replies
View Related
Jul 11, 2013
A drawing that is in Vault, it asks if you want to check it out, and if you say no (like if you just need to print it), it opens it then asks you again if you want to check it out? Did it not get the hint the first time?
View 1 Replies
View Related
Apr 16, 2012
I have a dwg file with three sheets in, just default names, I can access sheets 2 and 3 but get the attached errors when trying to access sheet 1 form either sheet 2 or 3
This file was originally created in IV2009 I've had no problems then or with the various conversions of it.
It seems to be memory related so here's the sitrep as for memory 8GB DDR2 RAM, and Virtual Memory set at min of 8192MB and a Max of 16384MB, I did have it set a systems managed but that gave a warning of low virtual memory with almost every drawing file that I opened.
View 1 Replies
View Related
Nov 6, 2012
How people deal with multiple revisions of one sheet with sheet set manager, basically I want the cover sheet of drawings to have a list of drawings including the revision letter and revision date and on each individual sheet keep track of historical revisions
There is the current sheet revision and date fields.Does everyone usually just update these and manually keep track of historical revisions else where in there title block?
View 6 Replies
View Related
May 2, 2013
In testing my latest automation project, I've found that I can't save copies of a part multiple times (after deleteing the files off the disk) unless I close out of the top level assembly document, and reopen it. I used Process Monitor and determined that Inventor is trying to save to an existing file instead of creating a new file.
Inventor 2013 SP 1.1
View 1 Replies
View Related
Apr 4, 2012
Looking for step by step for multiple page setup setting in multiple layout, i use autocad civil 3d 2012.
View 1 Replies
View Related
Jan 3, 2013
I'm using AutoCAD 2013 that came with Building Design Suite (Revit) and the copy command terminates after making the first copy, instead of continuing to make multiple copies until I terminate the command. Is there a switch to control this? A sysvar?
View 2 Replies
View Related
Aug 3, 2011
I recently upgraded to Civil 3D 2011 from C3D2010. I have used the same ACAD.PGP file for years that includes the shortcut C for the COPY command. Up until C3D2011 this would always allow me to copy an entity multiple times, (the default when COPYMODE is set to 0).
I am running C3D2011 64bit on WIN 7 64bit OS. It happens with other commands too that use a dialog box normally, i.e. INSERT - it only brings up the command line version of it.
View 5 Replies
View Related
Dec 11, 2013
I am having a problem with memory. I am running Windows XP with 4GB ram. when i start laying out in paper space, i copy the window in one page or copy multiple pages, every time i copy a page of window my memory builds up & up & up with each one until it gets to over 2 GB & the it tell me that if i continue with this next process CAD will crash because i have maxed out the virtual memory. This is usually not a problem when i am doing smaller one off drawings with a few pages of windows but when i am doing a bigger project with 20+ pages or windows i run out of memory.
I gave the latest file to my business partner & he does not have this problem at all. He can open up many windows & as many pages as Cad will allow. His memory always fluctuates around the same 2GB. He is running Windows 7 with 4 GB ram.
View 9 Replies
View Related
Aug 8, 2012
Having trouble with diameter and radial dimensions since upgrading to 2013.
For example, draw two concentric circles and Presspull (or Extrude and Subtract) so that you get a hollow cylinder. Then create a viewport of this solid in a layout, and try to dimension the inside and outside diameters.
One of the two dimensions will work properly (seems to vary which one). The other will magically "jump" when placed (ex. the OD dimension will jump and become the ID, or vice versa).
How to resolve this? Our guys are having to do absurd things like redrawing the circle in paper space and dimensioning to it with a scale factor. Is this some sort of 2013 bug, or a setting?
Inventor 2013
Windows 7 64 Bit
View 9 Replies
View Related
May 30, 2012
under options - I have the Automatic save unchecked
the program keeps saving after I do something in sheet set manager...like rename a sheet view
2013 Civil 3D
View 9 Replies
View Related
Sep 25, 2012
Using PS CS6 on WIndows 7 64. All drivers updated. When I set 5 copies in the print menu, with either PSDs, TIFFs, or JPGs, PS sends the same job five times rather than telling the printer to just make 5 copies.
This happens when using either the color laser or Epson R3000. This does NOT happen when using non-CS6 products. On a 25 print run, this takes an abnormally long time.What I HAVE found is that PS is NOT passing the information to the printer. In other words, even though I set PS to multiple copies, when I click printer options the number of copies has not been passed to the driver.
View 7 Replies
View Related
Jan 11, 2012
I was using "copy components" inside an .iam without any problem. Suddently, when I tried to copy more instances, inventor was blocked and I was not able to copy anymore components. Then I had to close inventor because it seems to be in a bucle.
View 4 Replies
View Related
Jul 6, 2012
Is there a way to flip face multiple times? I have lots of composite window in the external wall of my model which someone has placed the wrong way round, at the moment I’m just flipping one window at a time.
View 4 Replies
View Related
Apr 22, 2013
I want to put multiple people in the scene. So I'm trying to import people.fbx into the scene. It succeed at the first time. I grouped the meshes and skeleton and name it in name people1. But I can't import the same people.fbx again. Is there any way to import one .fbx into the scene for multiple times?
View 1 Replies
View Related
Apr 2, 2014
I'm getting the same file opening multiple (20-30 times)try closing and it just keeps opening new copiesHave to force quit in the end
View 2 Replies
View Related
Jan 6, 2014
I have created an image and would like to print as many copies of it as I can fit onto a single page from my printer (let's say A4 size). (My image is a logo that I am printing to water-slide transparency which is too expensive to waste one sheet per image). I can't seem to easily do this in Paint.Net (the options for contact sheet and wallet don't come out in quite the size I want). So I guess the best option is to save the file in another format (tiff, jpeg, PNG etc) and then copy it multiple times into another app like Word or PowerPoint, and then print from there. However my image has some transparent areas that I need to keep as transparent. How do I do this? Are there some image file formats that will retain the transparency? Likewise do word or PowerPoint support the transparent areas and print as such?
View 3 Replies
View Related
Mar 14, 2013
After printing a photograph cannot print another. Error message: "There was an error opening your printer. Printing functions will not be available until you have selected a printer and reopened any documents." have to close and reopen the program to print one more.
I have this program on my laptop as well where it does not have this problem. Have tried reinstalling but problem remains on my desktop.
View 2 Replies
View Related
Oct 14, 2013
There are many examples of creating rectangular patterns, but not many, if any, of interrogating existing patterns.I have attached the files and a screenshot of a rectangular part inside an assembly. The part contains a rectangular pattern of holes and workplanes.how do I get hold of each proxy of the workplane in the pattern?In other words I don't know what to put in the for loop at the end of this code fragment:
If _invApp.Documents.Count = 0 Then MsgBox("Need to open an the assembly document") ReturnEnd If If _invApp.ActiveDocument.DocumentType <> DocumentTypeEnum.kAssemblyDocumentObject Then MsgBox("Need to have an Assembly document active") ReturnEnd If Dim asmDoc As Assembly Document asmDoc = _invApp.ActiveDocument Dim asmDef As AssemblyComponentDefinition asmDef = asmDoc.ComponentDefinition im occurrences As ComponentOccurrencesoccurrences.
[code]....
View 5 Replies
View Related
Jan 10, 2012
Our configuration management tool requires a DWG for our system assembly drawings. A single DWG with all the sheets layed out in a sheet space. Right now I do a "Save As" out of inventor and it creates X number of seperate DWG files and then I stitch them together in AutoCAD by taking each sheet and placing them into a single sheet space (copy paste). My work flow would be much faster if I could get Inventor to create a single sheet space with all the active or selected sheets as a single DWG output.
View 4 Replies
View Related
Apr 12, 2013
How can I update automatically my sheet set when I have created a new layout on my drawing? I mean it's awful to drag my new layout into my set for added as a new sheet! Is there an other way to save it and automatically have my new sheet?
View 2 Replies
View Related
Jul 18, 2012
tutorial on how to do a layout development ?
View 9 Replies
View Related