- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
List of Ilogic Forms?
I've made a few smallish assemblies of various components that can be cofigured through ilogic forms.
I was wonder - say i have 12 of these in a large assembly, is it possible to have something run through the whole assembly and generate a list of the forms in the whole assembly that will allow me to launch which ever one I want without having to find the piece in question that house the form and running it myself?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I haven't tested this but... could you add a ilogic rule into each part that contains a form. This illogic rule would contain...
ilogicForm.Show("Form 1")
Change the name above to suit the form name. Then create a illogic rule in your assembly that contains the parts with the forms. This illogic rule would fire off the rules in your parts...
iLogicVB.RunRule("PartA:1", "ruleName")
iLogicVB.RunRule("PartB:1", "ruleName") etc
Let me know if this works because when I get a mo I will use this on some of my library parts / assemblies
Cheers
M