Trying to write a case script that would drive a list into a pulldown which is no problem. The issue is that Pulldown box 1 drives the list in Pulldown box 2.
There are 20 choices in Pulldown box 1. 19 of those choices create exactly the same list in Pulldown box 2. Once of the choices in Pulldown box 1 creates a different and unique list in Pulldown box 2. So.....
If Case in pulldown box 1 = Option 1 then
pulldownbox2.Additem("choice 1");
pulldownbox2.addItem("choice 2"):
etc....
If Case in pulldown box1 = Anything other that Option 1 then
pulldownbox2.addItem("different choice 1")
etc
I want to avoid having to create a case of exactly the same list for 19 of the options if that makes sense.
Thanks -pc