AutoCad :: Populate Building With Smoke Detectors

Oct 6, 2013

I've been given a floor plan of a building which I need to populate with smoke detectors. The smoke detectors are larger than the entire building. I've used the same smoke detectors on other floor plans and they've always been scaled properly.

Also, I notice the floorplan is 1:250@A3

View 7 Replies


ADVERTISEMENT

AutoCAD VB :: Populate A Listbox With Information From Entities

Nov 14, 2012

What i want to do is popluate a Listbox with with the area of previously selected Objects.This is what i have at the moment:

i = 0ListBox1.ColumnCount = 2For Each ssetOBJ In sset objarea = ssetOBJ.Area i = i + 1 With ListBox1 .AddItem .List(.ListCount - i, 0) = "Fläche" .List(.ListCount - i, 1) = objarea End With Next.

 But the code only writes the area of the last Object in the first Row of the Listbox.I think in the FOR EACH Expression the variable "i" pass always "1" for the Row Number.

View 2 Replies View Related

AutoCAD VB :: Populate ListBox With Action Recorders

Feb 28, 2013

Is there a way to populate a ListBox with all of my Action Recorders?

View 1 Replies View Related

AutoCAD 2013 :: Tool Palettes Won't Populate

Sep 16, 2013

I'm using AutoCAD 2014. When we upgraded from 2013 I migrated all of my tool palettes and settings over to 2014 earlier this year.  All seemed normal up until Friday when I created a new palette.  That part was normal, but when I tried to drag a block from Design Center to that tool palette it wouldn't populate.  It seemed like it was going to, it gave me that typical >---< under where the block would show up in the tool palette, but when I tried to release it in the palette, nothing.

Additionally, if I right click on a directory/folder in design center and select "Create Palette of Blocks" (which I have done a million times before), it will create the tab of the directory/folder I have created but does not populated it with the blocks within that directory/folder.  Leaving me with a blank Tool Palette.  

View 1 Replies View Related

AutoCAD .NET :: How To Populate Data Type Using Loops

Apr 26, 2011

I have to add 80 Xdata to some objects. How to populate them within a loop. This what I did for 11 of them . But

I am pretty sure there is a way to do it in a loop which I don't know .

 Public Sub SetXData2()
Dim doc As Document = Application.DocumentManager.MdiActiveDocument
Dim ed As Editor = doc.Editor

[Code]....

View 7 Replies View Related

AutoCAD Inventor :: How To Populate Multivalue PARAMETER

Jul 24, 2012

How to populate an Inventor Multivalue PARAMETER using a For cycle in iLogic according to a variable index corresponding to a different number of array items?

for example:

i grab some data from a Rule and populate an Arraylist variable. I trace the number of instances using a counter. after the data acquisition I want to populate the Multivalue Parameter with the acquired values.

No problem browsing the Arraylist parameter: MyArraylist.(Index)... but what about the Multivalue parameter?

the MultiValue.SetList("Multivalue Parameter", Value 1, Value 2, ... , Value N) provide a defined number of data and cannot be set dynamically according to an Index.

View 2 Replies View Related

AutoCAD .NET :: Create / Populate Custom Dictionary?

Sep 30, 2010

How to create and populate a new custom dictionary in with vb.net.  None of the examples I could find (that I think would work) were written in vb and weren't very well documented.  So I guess what I would like is a push in the right direction. 

View 9 Replies View Related

AutoCAD LT :: How To Populate Tool Palettes With Terminal Blocks

Oct 10, 2012

I know how to create a new Palette but I need to populate it with some terminal blocks i use every day, I currently open drawings and copy and paste, How do I add the terminal blocks I created to my custom palette. I have AutoCAD LT 2013

View 2 Replies View Related

AutoCAD 2013 :: Auto-populate Block Attributes?

Sep 2, 2012

I have one drawing with several thousand instances of the same block in it. Each block has a 'name' attribute.  I want to populate those block attributes with a spreadsheet.  What is the best way in AutoCAD 2013 to do that?

Ideas:  the old ATTOUT, ATTIN commands from Express Tools....rather a dated method, but it might work

dbConnect:  I've never used it, but might work.

Data Extraction Wizard:  I think is just for data extraction from a drawing, but again not sure.

View 1 Replies View Related

AutoCAD .NET :: Populate ColumnDataview But Not Integrate All Linetype In Current DWG

Apr 1, 2012

here my code :

Public Function LectureDefLine() As Collection
Dim db As Database = New Database(True, False)
Dim OkErreur As Boolean = False
dim cCollDefTypeLine as collection = New Collection
Try
Dim path As String = HostApplicationServices.Current.FindFile

[Code]...

i use it for populate a ComboxColumn of a dataview.

I want populate a ColumnDataview but not integrate all the linetype in mu current dwg.

This code run but acad crash after ..   So have you a function/sub working fine ?

View 6 Replies View Related

AutoCAD Inventor :: Populate IProperties From Excel Using ILogic

Jun 27, 2011

I am trying to use an iLogic rule to populate iProperties (some generic, some custom) from a part number spreadsheet (containing columns such as PART NUMBER, DESCRIPTION, FINISH etc) and the rule keeps throwing up the following error 'Conversion from string "" to type 'Double' is not valid.'

Here’s part of the code (would be extended for the required custom iproperties but I’m assuming the same principle is ok)
 
StartRule:
'read excel file
GoExcel.Open("C:DESIGNDocumentsEXCEL FILESPART NUMBERS", "PARTS")
'index row 3 through 10000
For rowPN = 3 To 10000
'find first empty cell in PART NUMBER column (Column A)
 If (GoExcel.CellValue("A" & rowPN) = "") Then
[code]...
 
Changing the format of the excel data (number or text) has no effect. Is manipulation of the format required so that Inventor can read text and numbers to iProperties in this way?

View 5 Replies View Related

AutoCAD Inventor :: Populate Listview On Windows Form

Jan 8, 2014

I am struggling to populate a list view on my windows form. I have tried various methods but its not working. I can get the values into the listview but where i need 2 columns with many rows, i am just get 5 columns.

my list view needs to populate 2 columns. the first column is visible and shows a part name. the second column is hidden and holds a different value. I recursively loop through records and i need to add a row per record. This is captured with j. How can i add the correct amount of rows per j and the columns to hold the correct data?

View 2 Replies View Related

AutoCad :: Link To Database And Populate Drawings With Data

May 16, 2013

I have some files (OK, 11,000 of them) and they have drawings on the bottom and text on the top. I want to erase this text and replace it with data that comes from a database. I don't know where to start.

I need to:
1. preferably find a way to erase the old data on the top, but I could do it manually
2. Insert data from specific fields into specific spots on the drawings.
3. Each drawing would have the same fields but different data corresponding to an account number. The account number is included in the name of the drawing and is a field in the database.

How to get started? I have Map3D as well, which I was told would work better than regular AutoCAD on this, but I also have regular AutoCAD. I can't even figure out how to make the database connection work.

View 9 Replies View Related

AutoCAD Inventor :: ILogic To Populate Iproperty From Multi Value Parameter

Nov 3, 2011

I am struggling to find the right ilogic to extract the state of a multi-value text parameter and use it to populate a single i property.

View 1 Replies View Related

AutoCAD Civil 3D :: IDSP 2014 - 3ds Max Design / How To Populate This Library

May 14, 2013

There doesn't appear to be any preloaded content in my Style library - how to populate this library?

IDSP Premium 2014 (mainly Civil 3D 2014 UKIE SP1 & Infraworks with some limited 3ds Max Design)
Win 7 Pro x64, 256Gb SSD, 300Gb 15,000 rpm HDD
16Gb Ram Intel Xeon CPU E5-1607 0 @ 3.00GHz (4 CPUs), ~3.0GHz
NVIDIA Quadro 4000, Dual 27" Monitor, Dell T3600

View 2 Replies View Related

AutoCAD Inventor :: Choose View To Populate Title Block?

Jun 20, 2013

Long short, we have dozens of drawings and the original base view was deleted, so the title block uses the next view placed to populate.  We would like to drop in a new view, and use that as the view the title block looks to.  The only way we've figured how to do this is to delete the other 8 or so views (that are already all detailed)., place the view we want to populate the title block, then redraw all the views we just deleted.

Is there an easier way to chose a new base/primary view for a drawing?

View 6 Replies View Related

AutoCAD Civil 3D :: Create Parcels / Populate With Object Data

Aug 21, 2012

Any way to create a parcel from an object (closed polyline) and populate the parcel with Object Data from the polyline?

I have imported a .shp file into a drawing and the result is many closed polylines with properties similar to the attached image.  I would like to bring this data into a parcel object for labeling purposes.

View 1 Replies View Related

AutoCAD Inventor :: Get Route To Populate With 1/2" Tube Or Pipe?

Nov 8, 2012

After creating the route, I can not get it to populate with the actual pipe. How do you get the route to populate with a 1/2" tube or pipe?

View 1 Replies View Related

AutoCAD .NET :: Populate List Of Block Names - How To Edit Attributes

Mar 10, 2012

my job is to make an editor for blocks in C#. There should be a WPF-window were the user can see a list of blocks. He selects one and than he should see an overview about block attributes like insertionpoint, basepoint, rotation and scaling and he should be able to edit these attributes in this form. 

I know how i can populate a list of block names, but I fail at finding an opportunity to edit these attributes. 

I get the blocktablerecords, but then?

View 9 Replies View Related

AutoCAD Inventor :: Cross Populate Data From IProperties Fields

Mar 7, 2013

Is there a way to cross populate data from the i properties fields using iLogic or another method?

I would like to have fields from the Project tab to cross populate with items I have created in the custom field. 

Inventor 2013 

View 3 Replies View Related

AutoCAD Inventor :: Populate Assembly Text IProperty With Concatenated List Of Values

Feb 14, 2012

In the parent assembly a text iproperty exists called "child list". I would like to set this value via an ilogic rule that does the following:

For each child in the assembly where paremeter "include" = true, add the value of iproperty "filename" to a comma delimited list that will become the value of  text Iproperty "child list" in the parent assembly.

The result should look something Like iproperty"child" = "filename1,filename2,filename3,filename4, etc..."

The rule must iterrogate all children, both parts and assemblies, and must go beyond 1st level children.

The output does not have to be comma delimited but must be delimited with something (eg tab, :, etc..)

The number of children is unknown

Is there a character limit imposed on a text iproperty?

View 6 Replies View Related

AutoCAD Inventor :: ILogic Rule To Populate Finished Material Size Based On Model Geometry Selection

May 23, 2012

I created the following user parameters:

-Thickness
-Width
-Length
-Dia

I then created a Custom iProperty which consisted of the following "formula":    Finished Material Size = <Thickness> x <Width> x <Length> Lg.

eg. of Finished Material Result :        Finished Material Size = 6 x 25 x 300 Lg.

The problem comes up when dealing with diametrical components as the above formula will only populate for square or rectangular parts. Which would work if I could use iLogic code to populate the Finished Material Size iProperty. I have tried but failed.

First I created another user parameter called "Geometry Type" which has a drop down selection of either "DIA" or "SQUARE, RECTANGULAR".I then created the following iLogic code to set 0 as the value for the "unused" size parameters

 If PART_GEOMETRY = "DIA" Then WIDTH = "0"If PART_GEOMETRY = "DIA" Then THICKNESS = "0"If PART_GEOMETRY = "SQUARE, RECTANGULAR" Then DIA = "0"
 The part I just can't get to work is as follows.

I need some iLogic code which will populate the "FINISHED MATERIAL SIZE" custom iproperty with one of the following based on my "GEOMETRY TYPE" selection. "DIA" would return the following to "FINISHED MATERIAL SIZE":      = Ø <Dia> x <Length> Lg.

While "SQUARE, RECTANGULAR" would return the following to "FINISHED MATERIAL SIZE":     = <THICKNESS> x <WIDTH> x <LENGTH> Lg.I tried the following code but it does not work:

If PART_GEOMETRY = "DIA" Then iProperties.Value("Custom", "FINISHED MATERIAL SIZE")= "Ø"DIA "x" LENGTH "Lg."If PART_GEOMETRY = "SQUARE, RECTANGULAR" Then iProperties.Value("Custom", "FINISHED MATERIAL SIZE")= THICKNESS "x" WIDTH "x" LENGTH "Lg."

View 2 Replies View Related

3ds Max :: Populate People Flashing?

Mar 3, 2014

I have just rendered an animation with moving people trains cars etc. My people were done with populate. They are theonly objects that flash. All other animated objects are fine.

View 3 Replies View Related

Photoshop :: Have All Of Brushes Populate When Using CS5.5 For First Time?

Apr 24, 2013

It seems, by default, Photoshop CS 5.5, has only a limited number of brushes. I want my kindergarten students to have access to all of the brushes available in CS 5.5, so I've had these brushes by way of appending, for each individual student. having all of the brushes populate from the start?

View 4 Replies View Related

Xara :: Auto-populate A Template

Sep 19, 2012

I am using P&GD2013..If I use a template from the designs gallery it will automatically replace photographs and create new pages to match the number of photographs I import. If I make my own template I can't make it do that.I have tried modifying a supplied template but that seems not to work either. All I want to do is to create a template of an A5 landscape page with one centred 7 x 5 photograph and then import forty photographs. Do I really have to drag each one from the bitmap gallery ?

View 5 Replies View Related

3ds Max :: Possible To Save Mesh From Populate System?

Oct 5, 2013

Like the title says is there a way to save a single mesh from the populate feature? Also are there other premade meshes available? Such as beach people etc..

View 6 Replies View Related

3ds Max :: Populate And Backburner Doesn't Work

May 8, 2013

I just noticed that I get a "3dsmax.exe process no response" when I try to render a scene that has populate people in it on backburner

View 1 Replies View Related

3ds Max :: How To Use Custom Skin In Populate Feature

Jun 14, 2013

I have been using the new populate feature. I would like to use custom skins. I have several biped figures that are what I would like to use for textures. I am not sure how the mapping works and you can not just copy the textures over. 
 
What do I have to do to take my texture from my biped skinned character and apply it to the populate character?

View 2 Replies View Related

3ds Max :: Populate Function - Possible To Swap Or Change Models?

May 17, 2013

I just want to ask if its possible to swap or change the models wich are used by the new populate function? The texture can be changed when i overwrite the original ones in the temp folder. Is that true?

View 1 Replies View Related

3ds Max Animation :: Populate A Park / Sports Complex

Jun 23, 2011

I need to populate a park/sports complex. I need a few people walking and a few people running. I don't have any experience with animating people. What is the best way to do this? I have used 3ds Max for years but never animated people. I found some models on turbo-squid. Should I purchase rigged models? Do I need to purchase mo-cap or is walking/ running easy to do in Max?

View 2 Replies View Related

Illustrator :: Automatically Populate Template With Images?

Jun 17, 2013

I have more than 2,000 QR codes that I need to insert into this template for printing. I am hoping that there is an automated way to do this so I don't need to resize and place each QR code image by hand.
 
Is there a batch command or action of some kind that can perform this task for me?

View 5 Replies View Related







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