1. Question about List
- Posted by David Roach <roachd_76 at YAHOO.COM> May 05, 2000
- 636 views
I need to know how to set the value of a variable when an item is chosen from a dropDown List.
2. Re: Question about List
- Posted by David Roach <roachd_76 at YAHOO.COM> May 05, 2000
- 613 views
I figured this out. Let me know if there is a better way. integer whatscale whatscale = 0 procedure onChange_List() whatscale = getIndex(list) end procedure This returns the position of the selected item in the list. first, second, third, etc. So I can just use that.....I HOPE Dave

