Form with list
Hi
How can i create list at form like this
Not necessarily multiple list but i need view few options on screen
Thanks
Hi
How can i create list at form like this
Not necessarily multiple list but i need view few options on screen
Thanks
That's a problem in Windows 10 with (I think) CS6. The fix is simple: instead of adding the listbox to the window, add a dummy group to the window and add the listbox to that dummy. Change the first three lines as follows:
var w = new Window ("dialog");
var dummy = w.add ("group")
var myList = dummy.add ("listbox", undefined, ["one", "two", "three"], {multiselect: true});
Note that you should set the multiselect property.
P.
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.