
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
so I'm trying to set up a text parameter that tells the boys in the shop which machine to use to cut out the part I've designed when I hand the design off to them. I WAS using a boolean parameter for a while and it worked but now I need to have more than 2 options on the list to choose from and that's where things get weird. I'm trying to have a multi value list that opens up when I launch the file so I can tell it which machine we're using (plasma, shear or saw) and so far the iLogic code isn't cooperating... i keep getting this error:
'Error in rule: ProcessRule, in document: Part10
Object reference not set to an instance of an object.'
here is my code so far. please help?
SyntaxEditor Code Snippet
MultiValue.SetList("Machine", Plasma, Shear, Saw) Machine_Process = InputListBox("Select Process", MultiValue.List("Machine"), Machine, Title := "Process", ListName := "List")
Solved! Go to Solution.