AutoCAD Inventor :: How To Delete ILogic Forms

Nov 7, 2012

how to delete iLogic forms from Inventor 2013 parts/assembly using VB.net 2010?

I am able to delete all the rule using "Activated_iLogic.DeleteAllRules(PartDoc)" but "Activated_iLogic.DeleteAllForms(PartDoc)" or "Activated_iLogic.DeleteForm(PartDoc, FormName)" does not give me the result I was expecting and Google is not showing any result related to this.

View 5 Replies


ADVERTISEMENT

AutoCAD Inventor :: ILogic Forms Slider Setup

Nov 16, 2011

I am just playing with iLogic forms and I have set a slider to move a part in 15 degree steps from 90 to 180 degrees, all is fine but the slider is on the left for 90 degrees and on the right for 180 degrees, I would like it to be able to be set so that 180 is on the left of the slider and 90 is on the right of the slider. is this possible?

View 3 Replies View Related

AutoCAD Inventor :: Using Material IProperties In ILogic Forms?

Aug 3, 2011

I'm trying to build a simple ilogic form to fill out iproperty infomation for parts we generate.  Our company only uses a few of fields that are available.  The problem is that the Physical tab is not available in the form editor.  I would like to add this field to my form to be able to select the material for the part.  The style/standard editor in our part template file holds all materials we use.  Summary, Project, Status, and Custom are all available, why isn't Physical? 

View 9 Replies View Related

AutoCAD Inventor :: ILogic Forms Picture Folder?

Sep 9, 2013

I have a small problem with iLogic forms picture folder. Is there a way of seting the image by the selected tab ?

I want to update the image by the tab selection.

I have tried "if" or "select case" and neither one worked. as I am saying Stair_Properties = True it only makes the tab active. It doesnt indicate if it is selected, here is the code :
 
If Stair_Properties = True ThenImage = "Image 01"End IfIf Railing_Properties = True ThenImage = "Image 02"End IfIf Riser_Properties = True ThenImage = "Image 03"End If'Select Case Image'Case Stair_Properties'Image = "Image 01"'Case Railing_Properties'Image = "Image 02"'Case Riser_Properties'Image = "Image 03"'End Select

View 1 Replies View Related

AutoCAD Inventor :: ILogic Form With Multiple Forms?

Oct 25, 2012

I would like to know if it is possible to make a form with multiple forms, depending on the selection a could build a rectangle, or a cilynder or a cone.

View 3 Replies View Related

AutoCAD Inventor :: ILogic Forms Picture Folder

Aug 5, 2011

What is it for and how do I use it? Will it allow me to switch between different pictures for display on my iLogic form?

If so? How do I set which picture to display?

View 5 Replies View Related

AutoCAD Inventor :: ILogic - Not Recognizes Option Selected In Forms

Dec 31, 2013

Aleays that I change the selection "MODO" ("D e i" instead of "Z1 e Z2" and vice-versa), I need run one more time for the rule sense the changing.. when the right is run one time.

iLogicForm.Show("FLAMA-GEARS", FormMode.Modal) If MODO = "D e i" Then iLogicForm.Show("D e i", FormMode.Modal) End If If MODO = "Z1 e Z2" Then iLogicForm.Show("Z1 e Z2", FormMode.Modal) End If

View 3 Replies View Related

AutoCAD Inventor :: IAssembly Forms To Control IPart Forms

Apr 12, 2012

I have an ipart that uses a simple form to control its length. This part is used in an iassembly whic has other forms to control constraints.

I would like to be able drive the ipart form from inside the assembly.

View 1 Replies View Related

AutoCAD Inventor :: Delete ILogic Rule Using VBA?

Jul 6, 2011

i have an iLogic rule in serveral files. Now this rule has to be deleted. This should be done with VBA. I can not find any function to delete a rule using VBA.

I found a function iLogicAuto.RunRuleDirect(rule), but not iLogicAuto.DeleteRule(rule) ...

I can not find any documentation for iLogic/VBA.

View 9 Replies View Related

AutoCAD Inventor :: Delete Userparameter With Ilogic

Jan 9, 2012

I know how to add user parameters with ilogic, but i would like to dete them as well. I've tried to use the delete option as mentioned in the API but I cann't get it working in ilogic.

How i create a parameter:

Format:HTML Format
Version:1.0
StartHTML: 165
EndHTML: 3855
StartFragment: 314
EndFragment: 3823
StartSelection: 314
EndSelection: 314

DimoDocAsPartDocument=ThisDoc.Document'of : oDoc as AssemblyDocumment = ThisDoc.Document
'nummerieke parameter
Try
prop=oDoc.ComponentDefinition.Parameters.UserParameters?.item("nummer")
Catch
newprop=oDoc.ComponentDefinition.Parameters.UserParameters?.AddByExpression("nummer", "100", "mm")
EndTry

View 1 Replies View Related

AutoCAD Inventor :: Delete All Parameter In ILogic

Sep 27, 2012

In 2009 Inventor iLogic, we have a button to delete all parameters and rules. But now, in 2013 Inventor iLogic, I only find a button to delete all rules. Where is the button to delete all parameters?

View 9 Replies View Related

AutoCAD Inventor :: How To Delete All Parameters In A File With Ilogic

Aug 22, 2012

Working code ...... attaching file

Auto = iLogicVb.Automation
Dim iLogicAuto As Object
iLogicAuto = Auto
Dim oDoc As Document
oDoc = ThisApplication.ActiveDocument

[Code]...

'but now something more i wanna do is...... delete parameters

        If Not (param Is Nothing) Then
        
            For Each param In params
            i = MessageBox.Show("Checking for Parameter in File")
            i = MessageBox.Show("No.of Parameters exists are ="& param.count)
 
[Code]....

View 5 Replies View Related

AutoCAD Inventor :: ILogic To Delete Sketched Symbol From IDW

Nov 5, 2012

How can I delete one Sketched Symbol from my Drawing ? It wont be in use in any sheet, i just need to delete it and the recreate with my code, so by this way the symbol is updated.

The other part of the code is created already, just need this part to delete. I found some ways but just delete the symbol from the sheet, not the source symbol. How can i delete it then ?

View 4 Replies View Related

AutoCAD Inventor :: ILogic - Delete A Suppressed Component Pattern

Sep 20, 2013

How to modify the code below to delete suppressed parts in a pattern (entire pattern)?

Dim oComp As ComponentOccurrenceDim oComps As ComponentOccurrencesoComps = ThisDoc.Document.ComponentDefinition.OccurrencesFor Each oComp In oCompsIf Component.IsActive(oComp.Name) = False Then oComp.DeleteNext

 Code works fine if there are single instances of the part. It throws a error when you have a suppressed pattern.

View 7 Replies View Related

AutoCAD Inventor :: How To Delete Suppressed Components By ILogic Rule

Jan 24, 2013

I have an assembly which includes lot of parts (*.ipt) or sub-assembly (*.iam). I have some ilogic rules to control to suppress or un suppress them.

Now for the released assembly, I want delete all suppressed components by ilogic rule.

View 9 Replies View Related

AutoCAD Inventor :: Delete Column In Excel File - ILogic

Oct 23, 2013

Is there any way using ilogic to find a value in an excel file and delete the column that value was found in?

View 1 Replies View Related

AutoCAD Inventor :: How To Use ILogic Rule To Delete Rules And Features In Other Parts

Aug 10, 2012

I made an Part with iLogic rules, let's call it "iLogicPart". The rules inside could create lot of different part by my input.

I want save the different parts to different name as "Part 1", "Part 2", etc. I used SaveAs to get them.

My question is: I want to delete all rules and parameters in the saved parts as "Part 1", "Part 2". And I have lot of features (the name is hard to track) which are inactive, I want to delete them at same time too.

I could manually do so, but I want to use rule to do so automatically.

View 9 Replies View Related

AutoCAD Inventor :: How To Make Art Forms

Apr 30, 2012

What is the best way to make art forms with inventor?

View 9 Replies View Related

AutoCAD Inventor :: Control Forms Without Parameters?

Nov 14, 2013

From iLogic i got a lot of information. And i want to configure or display this in a form. 

But without having to make parameters for everything.

Example:

Display the stocknumber of an ipart/iassembly.

Configure the parameters from a part in the main assembly.

View 7 Replies View Related

AutoCAD Inventor :: How To Create A Check Box For Parameters In Forms

Aug 3, 2012

how to create a check box for parameters in forms in inventor 2013, i have modelling a door which contains to many types of locks and where they are placed so i need to create check boxes to pick multiple items so i need to know how to insert them.

View 8 Replies View Related

AutoCAD Inventor :: Exactly Which IGES Entity Types (and Forms) Are Supported?

Jan 10, 2014

I had some success transferring geometries, generated with an advanced math software, to Inventor using IGES files containing Manifold Solid B-Rep Object Entities (Type 186) (see the specification IGES5-3_forDownload-1.pdf). Now I would like to include several Type 186 entities into a single IGES file and form the geometrical unit of these (and them), for which the IGES Boolean Tree Entity (Type 180) seems to exist. I'll do some trial-and-error testing, but it would be very useful to have a (reliable) list of all IGES entities the Inventor IGES import function does or does not support (like these: Transcendata, MoldflowInsight). Unfortunately I could not find such a list anywhere.

Another question: Are the IGES import/export functions of Inventor written by Autodesk (and/)or are third-party libraries used? If the latter, which ones?

View 2 Replies View Related

AutoCAD Inventor :: How To Make Forms Share Excel Data

Oct 13, 2011

I set up a Form in Inventor using parameters that are driven from Excel. I cannot edit the form.

View 6 Replies View Related

AutoCAD Inventor :: ILogic - Skip Saving A Suppressed Component / Delete Suppressed Component

Aug 30, 2012

I have an assembly which has a few components suppressed.

My end results is another copy of the assembly (with copies of the all the parts) in another directory

Now i am able to create copies of un-suppressed parts using; (this allows me to SaveAs assembly components which are not suppressed)

DocumentsEnumerator = ThisDoc.Document.AllReferencedDocuments

And save a copy of the assembly using

ThisDoc.Document.SaveAs

I also added the fllowing snippet (which I am not sure what is does), but it does not work for me

Component.SkipDocumentSave = true

 When I open the newly created assembly, I still see the suppressed components in the model browser

I want to either;

Skip saving the of the components in the model browser (i.e. the Assembly)

OR

Delete the suppressed parts in the Assembly, so that they do not save altogether

View 3 Replies View Related

AutoCAD Inventor :: Global Forms Button To Immediately Launch External Rule?

Apr 4, 2013

I would like to instantly launch an External Rule just by clicking on a button in the Global Forms area of the iLogic browser.  Is this possible, and if so, how would I do it?

Product Design Suite Ultimate 2014 | Vault Basic 2014 (SP1)
Dell Precision M6600 | Intel i7-2820QM - 16GB
nVIDIA Quadro 4000M | Windows 7/64 Pro

View 2 Replies View Related

AutoCAD Inventor :: Close ILogic Form With VBA Or ILogic Rule

Aug 19, 2013

how can I close an iLogic Form from either an iLogic Rule, or a VBA Rule (VBA is the Preferred method)?

View 5 Replies View Related

AutoCAD .NET :: Instance Forms In Several Drawings?

Apr 24, 2012

I'had just met another matter for my Add-on. I noticed that when I instance a new drawing, while a first one is opened, when I load a new Form, this one keep all first drawing's properties. What could happen? 

For example, I would like to add the layer list on a ComboBox.

My source:
 
Private Sub LayerBox_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load '***************************' '* Initialisation LayerBox *' '***************************' Using acTrans = acCurDb.TransactionManager.StartTransaction() acLyrTbl = acTrans.GetObject(acCurDb.LayerTableId, OpenMode.ForRead) For Each acObjId As ObjectId In acLyrTbl acLyrTblRec = acTrans.GetObject(acObjId, OpenMode.ForRead) ComboBox1.Items.Add(acLyrTblRec.Name) Next acObjId End Using End Sub

 This source works, but if i instance a new form on a new drawing, the first drawing's layer list is kept and the new layer list on the second drawing is ignored!

View 4 Replies View Related

AutoCad 3D :: Round Over Existing Solid Forms

Dec 22, 2013

Can you round over existing solid forms in autocad 2010. My solid is 30mm thick and I want to round-over the edges with a 6.5mm radius.

View 2 Replies View Related

AutoCAD Inventor :: ILogic Design Copy - Error Copying A File / Inventor Crashes

Nov 5, 2013

I'm trying to use iLogic Design Copy to copy an assembly and all its associated parts to another directory. The assembly contains content center parts. Inventor warns me that the destination file of one of the CC parts (and 18 others) will be overwritten. When I go ahead and copy anyway, the copying process stops at that specific CC part. The Design Copy Progress dialog box states there is an error copying that CC part. When I close the Design Copy Progress dialog box, Inventor crashes.

The error copying the CC part: I'm allowed to use content center parts in iLogic Design Copied stuff, right? I searched some related topics and I'm under the impression that Inventor keeps the CC parts in its own directory and shouldn't be trying to overwrite them.

View 3 Replies View Related

AutoCAD .NET :: Break Points Not Stopping Code On Modeless Forms?

Mar 8, 2012

I am using acad 2012, and VS 2010 (C#) on win 7 64 bit.

I made a form, and showing it as modeless via Application.ShowModelessDialog... as recommended by everyone and that works fine.

I have a button that does something, and I set a break point right on the first line of code for its callback.

The button runs fine, but VS is not stopping at the break point.

Is there a different technique required when debugging modeless forms?

[URL]

View 5 Replies View Related

AutoCAD Inventor :: ILogic Min Or Max?

Nov 13, 2013

I am doing a tie rod the issue I have is when the length is between 2.001 and 2.250 we would drill thru all but only tap the ends .750 deep. If the part is 2.000 would would drill and tap thru in one step and not have to rotate the part in the lathe.

How do I get ilogic to understand if my number is between this 2.001 and 2.250 to lengthen the drill length parameter?Or add a mid plane cut? ( trying now code below reflects this try)

 Not sure what way I want yet but I just can't seem to find a snippet or code to do this. I tried to add a list in the parameters for it to read but seems to do nothing.

If LENGTH <= "2" ThenFeature.IsActive("Thru_All") = TrueFeature.IsActive("Hole_A") = FalseFeature.IsActive("Hole_B") = FalseiProperties.Value("Project", "Description") = "RETURN ROLLER SHAFT, " & iProperties.Value("Custom", "DIAM") & " Ø S/S, TAP THRU 3/8-16, " & iProperties.Value("Custom", "LENGTH") & " LONG"ElseFeature.IsActive("Thru_All") = FalseFeature.IsActive("Hole_A") = TrueFeature.IsActive("Hole_B") = TrueiProperties.Value("Project", "Description") = "RETURN ROLLER SHAFT, " & iProperties.Value("Custom", "DIAM") & " Ø S/S, TAP BOTH ENDS 3/8-16, " & iProperties.Value("Custom", "LENGTH") & " LONG"End IfIf LENGTH = (My_List) ThenFeature.IsActive("Mid_Cut") = TrueElse Feature.IsActive("Mid_Cut") = FalseEnd If

View 2 Replies View Related

AutoCAD Architecture :: White Space Forms Around Text Object When Apply Hatch Or Color Region

Aug 8, 2012

In Autocad Arch 2013, is there some parameter or option that will turn off the default behavior of dropping out part of the hatch or color, around a peice of text?  In other words I don't what the white space that forms around a text object when I apply a hatch or color region.

View 1 Replies View Related







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