AutoCAD Inventor :: ILogic Event Triggers Stopped Working?

Jul 31, 2013

So the other day I set up an external rule and created an event trigger to run the rule on save.  It worked great ... for a couple days, and then it just stopped working yesterday.  I can still run the rule manually and it works fine, but it doesn't seem to run automatically anymore on file save.  Yes, iLogic is set to Loaded / Automati in the add-ins panel.

(on the iLogic rule attachment, remove .TXT from the end.  I had to add that due to the board's rules about file types.)

Product Design Suite Ultimate 2013, 2014
Autodesk Inventor 2013

Work: Dell Precision T1600 (Xeon E3-1280 / 16GB / 512 GB SSD / 250 GB (Internal) / 1 TB (External) / Quadro 600)

Home: i7-4770k / ASUS Z87-Pro / 16GB / 250 GB SSD / 1 TB HDD / 3 TB USB3 HDD / 2xRadeonHD 4870 in CrossfireX

Laptop: Toshiba Satellite P755-S5269 (i7-2630QM / 8 GB / 250 GB SSD / 750 GB HDD / GT540M)

View 9 Replies


ADVERTISEMENT

AutoCAD Inventor :: ILogic Coding To Disable Event Triggers

Apr 12, 2013

I am setting up template .ipts and .idw for my company, and i run Adept to save and store my files. Now i have a code to automatically make a .idw after i save an .ipt. but then after every save (adept saves the .ipt a lot of times) it will ask to make a drawing for the .ipt. well i was wondering if there is a code to put in a rule to disable the event triggers, and place that rule on the trigger after close document. so that the next time i open the document no event triggers will work.

View 1 Replies View Related

AutoCAD Inventor :: ILogic Rule Stopped Working?

Aug 12, 2013

I have a rule in iLogic that I was testing as "Straight VB.Net" on various assemblies.  It was working alright, but I was making some minor tweaks to eliminate errors.  Now, all of a sudden, it is unresponsive.  Completely.  No errors, no "busy" symbol over my pointer, just nothing.  I put in the line MsgBox("Begin") as the first line of the program to see if it was even getting into it, and still there is no response.  I run the rule, and absolutely nothing happens.  I tried writing it in iLogic instead, and that does make something happen.  what might cause the VB.Net element of iLogic to stop working, and hopefully how to correct the problem as well? 

View 2 Replies View Related

AutoCAD Inventor :: New Event Trigger For ILogic

Dec 8, 2011

Is there any chance to define an event trigger which runs an iLogic rule when we check out an already open file? Problem is, that we need to synchronize iProperties on check out to clear "Approved by" when Vault State of Part is "under revision"

Vault Parameter "State" is mapped with iProperty "State".

So I want to run the following on check out:

Call ThisApplication.CommandManager.ControlDefinitions.Item("VaultPropertyWriteBack").Execute2(True)

View 3 Replies View Related

AutoCAD Inventor :: API - Set An Event Trigger For An Ilogic Rule In A Document

Nov 3, 2011

Is there a way to set the event trigger of an ilogic file that's already inside of a document? I have code that can automatically create and populate new rules across my assembly parts, but it would be nice to set certain rules to fire every time that part gets saved. 

If it can't be accomplished outright from the API, would it be possible to throw an OnEvent (save event in this case) inside of the iLogic code, to get the same results? URL...

View 8 Replies View Related

AutoCAD Inventor :: Add External ILogic Rule Under Event Trigger Via API

Sep 22, 2011

Is it possible to place an external iLogic rule under a specific Event Trigger in a file via the API?

Inventor Professional 2014 64 Bit
Windows 7 Professional
NVIDIA Quadro FX 4600
Dual Intel Xeon E5540 CPUs
16GB DDR3 Ram

View 2 Replies View Related

AutoCAD Inventor :: Adding ILogic Rule To Event Trigger With VBA

Jul 11, 2013

How to get the API to add an iLogic Event Trigger but I cannot find the exact code on how to do it.

Is there a Simple way to add an Ilogic Rule (External or Internal) to an event trigger with a VBA Macro or iLogic Rule?

I would like to automate adding an iLogic rule to an Event Trigger when we update our old drawings.

The details of the Rule I am trying to call is as follows:

Rule Name = Save On Close Commands

Event = Before Close

We currently have Inventor 2013 and 2014.  If it is not possible in 2013, is it possible in 2014?

get the Rule Added to the Event Trigger

View 9 Replies View Related

AutoCAD Inventor :: 2010 Ilogic Custom Event Trigger?

Sep 18, 2012

Using Ilogic 2010 I wish to trigger my rule on sheet change. Is this something that can be done? I am using it to zoom the drawing on sheet change.

View 1 Replies View Related

Lightroom :: 3.3 Stopped Working Will Not Even Open / Says - LR Stopped Working And Closes

Jan 1, 2013

Lightroom 3.3 just stopped working error says lightroom has stopped working and shuts down. installed photoshop CS3 is that the problem?

View 2 Replies View Related

AutoCAD Inventor :: External ILogic Rule Is Not Working

Oct 5, 2013

Created in the template sheet metal rule. Why External ilogic rule is not working? User-valued parameter is created, sheet metal rule does not change.

name = ""For Each par In ThisDoc.Document.ComponentDefinition.Parameters.UserParameters If par.Name = "SMR" Then name = par.Name Exit For End IfNextIf name = "" Then Dim MyArrayList As New ArrayList For Each st In ThisDoc.Document.ComponentDefinition.SheetMetalStyles MyArrayList.add(st.Name) Next ThisDoc.Document.ComponentDefinition.Parameters.UserParameters.AddByValue("SMR", "", UnitsTypeEnum.kTextUnits) MultiValue.List("SMR") = MyArrayList Parameter("SMR") = SheetMetal.GetActiveStyle()End IfSheetMetal.SetActiveStyle(Parameter("SMR"))iLogicVb.UpdateWhenDone =TruePS:

View 2 Replies View Related

AutoCAD Inventor :: ILogic Range Between Two Numbers Not Working?

Apr 3, 2013

I would like to use the if else parameter in iLogic to set up a range, but I'm not getting it right.

What should happen:

if the variable 'breedte' is:

-       0 up to 3800; thats OK

- 3800 up to 4000; thats not OK, use 3800 instead

- 4000 and up; thats OK

Therefore I wrote this script, but when I enter a number between 3800 and 4000 (like 3900), the MessageBox appears (thats good), but the size of my solid results in 3900, instead of 3800.

breedte = InputBox("What is the breedte?", "Hoofdmaten", "")Parameter("skelet.ipt.breedte")=breedteIf breedte <= 3800 Then breedte = breedteElse If breedte >= 4000 Then breedte = breedteElse If (breedte >= 3801) AndAlso (breedte <= 4000) Then breedte = 3800 MessageBox.Show("This breedte is not possible." & hoogte & vbCr & "The value of 3800 will be used instead.", "Problem message", MessageBoxButtons.OKCancel, MessageBoxIcon.Asterisk) End If

View 2 Replies View Related

AutoCAD Inventor :: ILogic Save As PDF Color Option Not Working

Jan 16, 2012

I want to save my PDFs as All Colors As Black, but setting the option to 0 or 1 doesn't work, it keeps saving the PDFs in color. Here's the snippet of

 If oPDFAddIn.HasSaveCopyAsOptions(oDataMedium, oContext, oOptions) Then
oOptions.Value("All_Color_As_Black") = True
oOptions.Value("Remove_Line_Weights") = False
oOptions.Value("Vector_Resolution") = 400
oOptions.Value("Sheet_Range") = Inventor.PrintRangeEnum.kPrintAllSheets
'oOptions.Value("Custom_Begin_Sheet") = 2
'oOptions.Value("Custom_End_Sheet") = 4
End If

What is wrong with the option in the second line (shown in red)? I've tried a few other variations of All_Color_As_Black, but I'm having no joy. All the other examples I've looked at either has that option set to False (0) or that line is commented out .

View 4 Replies View Related

AutoCAD Inventor :: ILogic Addbaseview Not Working In Main Sub Structure?

Aug 7, 2013

Why does this not work ?

sub main()
code .....
oView1 = oSheet.DrawingViews.AddBaseView(oPartDoc, oPoint1, 1/1#,      kFrontViewOrientation,kHiddenLineDrawingViewStyle)
end sub

but this does ?

code.....
oView1 = oSheet.DrawingViews.AddBaseView(oPartDoc, oPoint1, 1/1#, kFrontViewOrientation,kHiddenLineDrawingViewStyle)

View 1 Replies View Related

AutoCAD Inventor :: Way Of Grabbing Code That Triggers Different Commands

Dec 9, 2013

I would like to know of a way of grabbing the code that triggers different commands for example, someone a while back gave me this command of 

This Application.CommandManager.ControlDefinitions.Item("SheetMetalStylesCmd").Execute

this triggers the Sheet metal defaults in a sheetmetal ipt file.Where was the SheetMetalStylesCmd part of it taken from?

View 2 Replies View Related

AutoCAD Inventor :: Rows In ILogic Form Builder Not Working Properly?

Feb 1, 2013

When I put a row deep enough in a form, i.e. under several groups, tab groups, or other rows, the rows stop working properly.

Inventor 2013 SP 1.1

View 9 Replies View Related

AutoCAD Inventor :: ILogic Code Not Working For Presentation Files In Drawing

Jun 2, 2013

I have found some code which extracts the part number from the iproperties of a model and adds it to the custom iproperties of a drawing but this will only work on iam or ipt files.

Here's the code, I added the lines referring to the docment type as an attempt to fix the error but it didn't work...
 
If (ThisDrawing.ModelDocument Is Nothing) Then ReturnIf ThisDrawing.ModelDocument.DocumentType = kPresentationDocumentObject Then modelName = IO.Path.GetFileName(ThisDrawing.ModelDocument.FullFileName)End IfIf

[Code]....

View 2 Replies View Related

AutoCAD LT :: 2013 Has Stopped Working

Nov 28, 2012

Let me know the solution for Getting "AutoCAD LT has Stopped working"  while attempt to print in HP Laserjet M1536 dnf MFP Printer. I have tried the following steps but still i am getting the same Error.

1.Graphics Driver has been updated.

2.Printer Driver has been completely removed  and reinstalled.

3.New configuration for this printer has been added.

4. AutoCAD LT 2013 Service Pack 1.1 has been installed.

System configuration: Win 7 -64 bit,4 GB ram, Intel-i3 2120 processor, Intel(R) HD Graphics.

View 2 Replies View Related

AutoCad :: Macros Have Stopped Working

Jan 31, 2014

All of a sudden, my action macros aren't working. I'm getting "Unknown command" errors. I've checked my options, everything's pointing to the right folder, and the macro files are in the right folder. Why would I be getting this error?

View 4 Replies View Related

AutoCad :: Why Scalelistedit Has Stopped Working

Jan 25, 2013

why my scalelistedit has stopped working and how i can recover it to make it work again

View 3 Replies View Related

AutoCAD 2013 :: Application Has Stopped Working

Jan 19, 2013

All of a sudden I got this window when starting AutoCAD:"AutoCAD Application has Stopped working..A problem caused the program to stop working correctly.Windows will close the program and notify you if a solution is available."

I'm using v2013 on a desktop with Windows 8..I have been using the program since I got this new system in November without a hitch On sunday I had a nasty virus -Today I had to uninstalled AutoCAD and re-installed it and it worked good.After I closed it and went to open the application again I got the MESSAGE again

View 9 Replies View Related

AutoCad :: Snap To Grid Stopped Working?

Apr 25, 2012

Snap to grid stopped working. I am reasonably sure I did something as it was working fine a few days ago.

View 8 Replies View Related

AutoCad :: Editing Functions Stopped Working?

Jul 1, 2012

I was working normally in a drawing (ACAD 2012, 32b) file when, without any apparent reason, I tried to delete something and it didn't work. The way I work is that I select first and then press the "delete" key.

Now, when I do this, absolutely nothing happens. The objects remain selected. While trying to figure out what was happening, I discovered further disruptions. For example, when I select and object and then right-click, instead of showing me the edit shortcut menu, it repeats the last command. I know what you are thinking, but I already verified the right-click customizations and it is correctly set to "shortcut menu" in the "edit mode".

Finally, when I double click on a text, it won't edit as expected; again, nothing happens. Ane yes, in "Options/Windows standard behaviour" the "Double click editing" options is selected.

All the above has it's way around: the "erase" command works, the "ddedit" text works, etc. But it slows me down horribly.

View 5 Replies View Related

AutoCad :: CTRL+Z Has Stopped Working As Undo

Mar 22, 2012

I'm currently using Civil 3D 2012, and all of a sudden CTRL+Z has stopped working as UNDO. It does nothing. I've found this issue in lots of other outdated forum posts, but none seem to relate to Civil 3D 2012. I went into CUI to see if the shortcut was somehow changed, but the UNDO command still points to CTRL+Z as its shortcut.

View 7 Replies View Related

AutoCAD Civil 3D :: 2012 GE Stopped Working

Oct 28, 2013

I get this dialog and I have the lates GE just reinstalled

Civil 3D 2012 & 2013
HP Z210 Workstation
Intel Xeon CPU E31240 @ 3.30 Hz
12 GB Ram
64 Bit Win7 OS

View 4 Replies View Related

AutoCAD 2013 :: Autodesk Component Has Stopped Working

Aug 7, 2013

Every time i try and open Autocad 2013 when checking the licence it comes up with an error ( Autodesk component has stopped working).

View 1 Replies View Related

AutoCAD Civil 3D :: Express Tools Stopped Working?

Apr 20, 2012

I recently did a repair on my C3d 2012 (whcih didn't fix the problem, but I found out what that was and sorted it another way.)

I now find that all express tools commands give me the command unknown error.

I have checked in the cui and the Express tools ARE loaded. I tried unloading and reloading acermain.cuix without success.

I tried adding features from the control panel, but express tools do not show in the list.

I checked the text window after I first opened C3d and it definitely lists that it has loaded express tools yet they do not work.

I tried typing expressmenu in the command line, but it says command unknown. 

edit - I tried resetting acetmain.cuix and got the following error:

Unhandled exception has  occurred in a component in your application. If yu click continue the application will ignore this error and attempt to continue.

Unable to cast object of type 'Autodesk Autocad Customization CUIUnresolvedCUIFileNode to type Autodesk Autocad Customization CUIPartialCUIFilenode'

View 5 Replies View Related

AutoCAD Civil 3D :: 2013 Stopped Working Crash?

May 31, 2012

Getting an "AutoCAD stopped working" message then system crash while working in AutoCAD Civil 3D 2013.

View 2 Replies View Related

AutoCad 2D :: Dynamic Input Options Stopped Working

Mar 9, 2012

One minute it was working, and then suddenly I can not use the "down arrow" to access the additional dynamic input options. It must be a profile setting, because it works in all my other profiles.

How to turn it back on?

Dynamic Input options.JPG

View 1 Replies View Related

Edge Animate CC :: Disable A Mouse Event After A Another Event?

Aug 2, 2013

I have a button which has a mousover/mousout animation. When i click the button, it will shrink down to 0%. when it does, my mousout event is triggert, which i dont want.
 
how can i disable the mousout event after the click event?

View 4 Replies View Related

AutoCAD 2013 :: Deselecting By Shift+Click Stopped Working?

Oct 29, 2013

A while ago I found out you can deselect something from your current selection set by holding down the shift key and clicking on it. This was a pretty useful tool...but then it randomly stopped working today for me.

View 4 Replies View Related

AutoCAD 2010 :: Double Click Editing Has Stopped Working?

Apr 16, 2012

As of yesterday Double click editing has stopped working. CUI says everything is OK.

View 2 Replies View Related







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