AutoCad :: Hide For Plotting Not Using Pen Tables

Feb 14, 2011

I am experiencing a problem with plotting a 3-D object correctly! Using AutoCAD 2011, I created a 3-D object, inserted it into our "carrier sheet" model space, then gave it a view port - looks great on the screen! When it plotted out it was really light - it was the only thing on the sheet that was wrong. I messed around a little and found that it has something to do with the plot option of "3-D hidden" & "hidden". When using "legacy hidden" it plots out at the correct line weights, however, the arrows are all "open" - the arrows are filled when using the other options. I went back into the 3-D object dwg file and tried plotting it straight from the source file - I get the same results. We use color to determine the plotted line thickness and these schemes are set correctly, etc.

I have tried to look for a setting that would force the plot styles .

View 2 Replies


ADVERTISEMENT

AutoCAD Civil 3D :: Can't Hide A Polygonal Viewport When Plotting

Jun 3, 2013

I brought a normal 4 sided viewport into my layout, but needed to clip and make a viewport with 6 sides.  I have also tried to redraw this by using a polygonal viewport.  When I go to plot the page, parts or all of the viewport boundaries are on.  It doesn't matter if I go to layer control and turn the layer off or freeze or select the non-plotting icon.

View 8 Replies View Related

AutoCAD Map 3D :: Hide Or Get Rid Of Seam Lines When Viewing Or Plotting?

Jan 25, 2013

Using AutoCad Map 3D 2012; Created a DEM mosaic, how do you hide or get rid of the seam lines when viewing or plotting??

View 5 Replies View Related

AutoCad :: Plotting To PDF Versus Plotting To Printer?

Feb 26, 2013

I'm attempting to plot a drawing with a 3d shape and a title block around it. I would like for the occluded lines to not be drawn therefore I'm using the hidden visual style and set shade plot to hidden as well.

My problem arises from the quality of the plot to PDF versus the quality coming out of a printer. It is just a 8.5x11 page. The pdf comes out with horrible anti-aliasing and jagged lines, whereas the print is entirely smooth. Is there something simple I'm missing? It would be even better to find a way to make the plot to PDF come out in vector format! I know it is possible to show the layers and have them vectorized in a PDF... How is this done?

View 4 Replies View Related

AutoCAD Map 3D :: Spatial Join Between Two Tables

Jan 6, 2012

I have 2 SHP files, one with lot information, the other with OCP. I created a join between the two tables but the resulting data was not spatially related. The objective is to show the land use of each lot.

View 6 Replies View Related

AutoCAD Map 3D :: Domain Tables In Properties?

Dec 4, 2012

In map3d i would like to add tables to objects such gas, sewer lines and so forth. I would like to specify which lines are composed of certain metals, their conduit size and year built.

I was wondering if it is possible to create a table similar to the one attached. I would like the table to have a domain drop down list, so that users can select from predefined entries, to avoid human error typos and keep good organization in the data entry.

Is this possible with map3d?

View 6 Replies View Related

AutoCAD LT :: Linking Excel And Tables

Aug 1, 2012

Well I had a day and a half trying to figure out how to bring Excel data into LT.  Again. Here is what I have found out:

Running Excel 2010 I have a xls files (of type '97-2003 xls - file includes VBA).  The file spits out a ton of data that I want to put in a schedule in AutoCAD.  The schedule format needs to match our standard format  -  RomanS in white and blue.

If I copy and paste as a link the font remains stuck as Arial (regardless of source font) and can't be relaxed unless you go one cell at a time in the text editor.  Also the resultant table size is tiny -   

If I save the file to .XLSM (macro enabled '10 excel file) the results are the same.  If I save the file to .XLSX ('10 excel file and ditch the VBA project) the results are sublime - the font is ok and I can go back and forth from AutoCAD to my now broken spreadsheet because VBA IS MISSING!   The resultant table size is tiny but I can deal. I don't see how AutoCAD can work with xlsx but not xlsm.   

I also found that if I save the sheet (values only) as a .csv file I can use that to create a table from file without font overrides screwing everything up.   

I'm running AutoCAD LT 32bit on a Win7 32bit OS.  My Office version is 2010.  I would like to link data to a '97-'03 version of an xls or an xlsm without having the font overridden to Arial.  

View 1 Replies View Related

AutoCAD Inventor :: How To Copy Tables

Apr 21, 2010

Is there anyway to copy a table from one sheet to another?

View 8 Replies View Related

AutoCAD .NET :: Selecting Tables In A Drawing?

Oct 29, 2011

I have a need to delete all the tables in my drawing.

I started with the SS14 code from Jerry Winters VB.NET progamming and modified it to select tables.  Unfortunately, when trying to select a table, the code does not work.   I tried it with Polylines, block references, Mtext and it worked OK with all of them.  See the code below:

<CommandMethod("SS14")> _ Public Sub SS14() Dim myDB As DatabaseServices.Database Dim myDWG As ApplicationServices.Document Dim myEd As EditorInput.Editor Dim myPSR As EditorInput.PromptSelectionResult Dim mySS As EditorInput.SelectionSet Dim myFilter(0) As DatabaseServices.TypedValue myFilter(0) = New DatabaseServices.TypedValue(DatabaseServices.DxfCode.Start, "INSERT") myFilter(0) = New DatabaseServices.TypedValue(DatabaseServices.DxfCode.Start, "TABLE") ' myFilter(0) = New DatabaseServices.TypedValue(DatabaseServices.DxfCode.Start, "POLYLINE") ' myFilter(0) = New DatabaseServices.TypedValue(DatabaseServices.DxfCode.Start, "MTEXT")
'''' Chenge items commented out above for testing.
 Dim mySF As New EditorInput.SelectionFilter(myFilter) myDWG = ApplicationServices.Application.DocumentManager.MdiActiveDocument myDB = myDWG.Database myEd = myDWG.Editor myPSR = myEd.SelectAll(mySF) Try mySS = myPSR.Value If Not IsNothing(mySS) Then MsgBox(mySS.Count) End If Catch ex As SystemException MsgBox(Err.Description) End Try End Sub

What am I doing wrong?  Or is there a bug when selecting "Tables" as distinct from other entities?

View 1 Replies View Related

AutoCad :: How To Insert Tables From Excel

Sep 17, 2012

I am trying to insert tables into AutoCad from excel the problem that I have is with the text style.

Every time I copy and paste as a linked AutoCad entity the text does not come across as the correct text style - for example if I want the table text to come out as ISOCP it comes across in a bolder text, requiring me to enter in the cell and select ISOCP I don't have to highlight the text in the cell i only have to enter inside the cell.

See the attached video.

View 3 Replies View Related

AutoCAD .NET :: Accessing Database Tables

Sep 21, 2011

I'm having a problem accessing data manager tables in the 2011 version.  My C# .NET code worked fine with 2010.  Here is a sample of the 2010 code that works, but returns zero length tables in 2011.

C#

ProjectPartCollection oPP = PlantApplication.CurrentProject.ProjectParts;
PlantProject oPProj = PlantApplication.CurrentProject;
Project oProj = oPP["PnId"];
try
{
//get ACAD data table
[code].......               

The last two lines fail to object any meaningful data in 2011.  In 2010, I would have all the table rows and could access tags and asset information. 

View 2 Replies View Related

AutoCad :: Updating Text From Tables?

Oct 22, 2012

Long ago, everything was done in Imperial and now we are converting to Metric, the issue is that the drawings we have no schedule of members and we (a colleague and I) are constantly discovering new members, this is causing no end of trouble with our numbering system.

What we would like to do is set up a master-table with 5 categories (UB, UC, PFC, EA and UA) and then have the labels for all the members dependent on this table. If we were to change the value in the table, the label would automatically update. Is this at all possible? I looked into the Xref and RText commands and they seem close but not quite there. Ideally the table would be in a separate dwg so we can work on drawings at the same time.

View 3 Replies View Related

AutoCad 2D :: Tables Embedded In MText?

Nov 20, 2013

Can you embed a table in Mtext? So when you edit the text the tables move with the text if you're taking out paragraphs in Specs and stuff.

View 2 Replies View Related

AutoCad 2D :: Fields And Tables Over Excel?

Jan 28, 2014

I'm trying to do a spreadsheet inside a drawing. Trying to use fields because I believe they behave better with feet and inches than excel (without jumping through hoops)

View 1 Replies View Related

AutoCad :: DXF Files For CNC Driven Tables?

Jul 17, 2013

I have used DXF files in the past for flat non-complicated cnc machining. I have a situation were we manufacture pipe and I would like to create the pipe in 3 dimensionally in AutoCAD and convert the dwg file to a dxf file for the steel cutting table. Will the DXF conversion convert the round cyclinder in CAD to a flat suface for cutting?

View 1 Replies View Related

AutoCad :: Different Layers For Text In Tables?

Jan 6, 2014

We are moving to a new drafting standard which uses .STB plots rather than .CTB. I'm wondering if there is any way of changing the layer of the text within the cells. I want the title to be at a certain thickness, the headers to be a different thickness, and the data to be a different thickness again when plotting. This is easy to do when using .CTB plot styles, but is there a way to do it when using .STB?

View 2 Replies View Related

AutoCad :: Data Extraction Tables

Sep 18, 2013

Here at the office we use a template I created using Data Extraction. After creating the table and inserting it, it works just fine. Then, if you make changes to the door or window you can click the "Download Changes From Source File" and it will update the table ... However, after saving it and trying to work on it the next day, it somehow unlinks the table I have in my drawing and I cannot "Download Changes From Source File" to update the table ... I checked under XREF and it shows it is loaded and I have it reading from the same path I saved it. I would like to know if there is a way to re-link the table to the .dxe file or how to prevent from it un-linking new tables?

View 0 Replies View Related

AutoCad :: Managing Data Between Tables?

Aug 13, 2013

I have Acad 2011 and Excel 2010 on my computer. What I would like to do is to create a list of materials in my autocad that will update from an excel table. The only problem is my Acad Table needs only some materials from that large spread sheet. For example when I write in my Acad table a piece number(col A) I would like to have a description coming automatic from excel (in col.b).

There will be hundreds of drawings with tables taking data from the same excel table.

View 8 Replies View Related

AutoCAD :: Filtering Property Set Definitions In Tables?

Aug 14, 2012

On my Property Set Definitions I have a attribute table called "ROOM_NO". This is where I enter the full number/character of the room, in my case the value usually looks like "101A", and sometimes "A101B" for Room number.

I was asked to do another table to separate the fields.

ROOM_PREFIX  ROOM_NUM.     ROOM_SUFFIX.

Separating the room number in 3 attribute tables to "A 101 B"

I was thinking referencing the ROOM_NO table in each box and filtering out the numbers and character. For example in ROOM_PREFIX I would reference ROOM_NO and filter out the number and the suffix letter through a formula. And in ROOM_NUM I would Filter both alphabetical character.

how to write such formula?

View 4 Replies View Related

AutoCAD Architecture :: Text Lineweight In Tables

Jul 23, 2013

There doesnt seem to be a way to control the lineweight of text in a table. I have changed the color of the text and I have applied a lineweight to the table but the text is way too light. I spent a bunch of time putting info into tables and it looks like total crap and I cant seem to change it. What is up with this?

View 4 Replies View Related

AutoCAD Inventor :: IPart Tables In Assemblies?

Nov 2, 2012

I'm trying to take multiple parts of the same type and make them into one .ipt I began doing this and It seemed to be working fine. When I put those grouped .ipts into an .iam, Inventor creates a Subfolder of each .ipt and fills it with each part from that group and now those created ipts are unique unlinked parts (unlinked to the group ipt). I'm trying to reduce our file count and link our .ipts and .idws/.dwgs so this Inventor file creator results in the opposite of what I'm looking for. My question now is is there any way to modify this process  to work the way I need it to or is there a completely different way that I should be doing this?

View 4 Replies View Related

AutoCAD LT :: Importing Different Plot Style Tables

Feb 21, 2005

I've plotted many drawings and I've always just taken it for granted that the plot style table that I typically use, monochrome.ctb, would be there to select in the plotting window. Usually, the drawings from my customer, have this option available to me in the plot style table when I get ready to plot. However, a few have come to me recently in which it was not available. Instead, the drawing had a monochrome.stb which does not plot out with a true monochrome appearance. I do not want this. I do not know how to get the monochrome.ctb style from my other drawings to work in my new drawings that only have monochrome.stb. I know very little about the different plot styles and how to modify them or import/export them. From what I gather by browsing this site is that you might be able to save plot styles to a folder in your computer and then import them to your drawing. Is this true? How I can get this monochrome.ctb to work in my drawings that only have monochrome.stb??

View 9 Replies View Related

AutoCAD .NET :: Hyperlinks In Attribute Values And Tables

May 15, 2012

Using C# (VS2010, Acad2012) i've created a block, imported it, given it the required attibute tags and values, and then created an array out of this block for a total of "x" identical blocks for our purposes. As these blocks are desigend to represent real-world products, is there any way that one of my attribute values can reflect a hyperlink to the manufacturers datasheet?

So essentially

Product Info [URL] ....

Also, one of my functions lists all of the blocks in the current drawing and tallys them up and drops them into a table where it reports the block name, details, and quantity. I would also like this block name to be a hyperlink as well...is this doable?
 
AttributeDefinition attDef15 = new AttributeDefinition(new Point3d(0d, 0d, 0d), productinfo,
"Web Link", "", db.Textstyle); attDef12.Invisible = true;

View 8 Replies View Related

AutoCAD LT :: Directional Keyboard Buttons In Tables?

Sep 18, 2012

I have a titleblock with a table for the BOM. When I select the block I want to enter text into, the block has a yellow box around it and the table editor pops up. I can click the arrow keys up and the highlighted section goes to the cell above the one it was just on. Down moves it down, Right moves it right, and left moves it left. The problem is when I double click the box to edit the information in the cell. when I double click the box and enter information, I typically am able to push the up key to get to the cell above it. NOW when I push the up key, it goes to the cell to the left. When I push the down key, it goes to the cell to the right.

I am positive that the is either a function or a button or a property that needs to be changed.

View 6 Replies View Related

AutoCAD LT :: New Title Block - Linking Tables

Mar 5, 2013

I have created a new title block for my company and i have a revision table on it. I use the tabs to go from different paper spaces and i would like to find a solution to where if i enter information on my first page it will automatically copy exactly what i put to the other tables on the other tabs.

View 4 Replies View Related

AutoCAD Inventor :: Create Two Tables In An Iassembly

Mar 22, 2013

I was wondering if I'm able to create two tables in an iassembly, like one table for size and another for different components in the same assembly.I have a vague memory of an old assembly having this but I can't find it or it's just a figure of my imagination.

View 4 Replies View Related

AutoCAD Inventor :: 2012 Revision Tables Through Api?

Nov 16, 2012

I'm trying to write a routine to work with a non vault revision table. I'm working with Vb .net & Inventor 2012. I am working with sheet scope tables.

From the inventor dialogue box there are two commands to add rows to the table.The insert row command. Which inserts a row in the table.

The add row command which inserts a row set the sheet revision property & sets the new row active.

I have tried to insert a new row with the following code & make it active but this does not work. Is is possible to create a new active row through the api? The new row gets added but cannot get the new row to become the active row.

dim new_row as RevisionTableRow

new_row = revtable.RevisionTableRows.AddCustom(table_length -blank_rows) ' This works as expected.

new_row.IsActiveRow = True ' this has no effect.

View 1 Replies View Related

AutoCAD Civil 3D :: Connect Volume Tables

Aug 25, 2012

I have 4 corridors on same alignments (pics1). I created materials for each corridors (pic2). Then I created multiple section view for each corridor (pic3) ( for all corridors in section view table tab, i added corridors own materials). but cumulative material volume reset to zero at each new corridors beginning. In my project, corridors cumulative material volume value should continue from the previous corridor's value. Can i connect this volume tables or can i merge corridors ?

View 6 Replies View Related

AutoCAD Inventor :: Saving / Copying Tables

Jan 29, 2009

Is it possible to save a Table in a idw template? Also can you somehow copy & paste a table into another drawing?

View 8 Replies View Related

AutoCAD Civil 3D :: Converting CTB To STB Plot Tables

Nov 8, 2012

I am doing a little trial and error on possibly converting a drawing from .ctb to .stb.  When we start a new drawing, it will be started using named plot styles so it shouldn't be an issue.  But there are times when we receive a drawing from someone else and need to convert it. 

The first thing I did was convert ctb to create a conversion .stb.  Then I used convert pstyles to convert the drawing to named plot styles.  For the plot style table I chose the conversion .stb I just created because it needs a color mapping table.

But I don't want to use the converted .stb table, I want to use my company plot style.  So when I am in layer properties manager, Plot Style is still grayed out and I can't change it. 

When I type in pstylemode, the default is 0 (read only).  How do I change it so it's not read only and I can use my own plot style table?

View 5 Replies View Related

AutoCAD LT :: Exporting Tables - Bitmap File

Sep 20, 2011

I hightlite the table in the viewport than right click to get the menu . Then export it and bring up the export dialog box.  It keeps saving the file as a bitmap and not a csv file.  I did get it to work once when I  exported it the first time as a csv file.  Now the second time trying to export it , it is coming up as a bitmap file.  What am I doing wrong.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved