• Industries
  • Products
  • Buy
  • Services & Support
  • Communities
  • Autodesk Inventor Customization

    Reply
    Contributor
    Posts: 19
    Registered: ‎06-26-2012
    Accepted Solution

    ilogic form trigger

    186 Views, 2 Replies
    11-29-2012 03:18 PM

    I have a ipt which is controlled via an ilogic form,this form is opened by ilogic code, which in turn is triggered when the ipt is opened.

    my problem is when the part is placed within an assembly the said form is triggered and the same happens when the assembly is reopened!.... I would prefer if the form opened only when the ipt is opened or edited.... 

    Is there a snippet of code for this? Or is it even possible?

    Please use plain text.
    Mentor
    MegaJerk
    Posts: 194
    Registered: ‎01-26-2011

    Re: ilogic form trigger

    11-30-2012 06:25 AM in reply to: Fleagle8t

    Try the following code in the rule file that is being opened on open : 

     

    Dim CurrentDoc as PartDocument = ThisDoc.Document  
    If (Not (CurrentDoc Is ThisApplication.ActiveDocument)) Then Return
    --------------------------------------------------------------------------------------

    If my solution seems to remedy your problem, please press the Accept Solution button, -
    as it increases my power levels and will eventually help to elevate me towards outer space.

    Check out my iLogic injection tool here : http://goo.gl/ce1Qg
    --------------------------------------------------------------------------------------
    Please use plain text.
    Contributor
    Posts: 19
    Registered: ‎06-26-2012

    Re: ilogic form trigger

    01-12-2013 12:24 AM in reply to: MegaJerk

    Works at treat, thanks MegaJerk. :smileyhappy:

    Please use plain text.