Filtering a List Box()
I'm looking for an easy way to filter a List Box() object. The simplest example I can come up with is this:Names Default To Here( 1 );
win = New Window( "Test", lbox = List Box( {"orange", "red", "green", "blue"} ) );
Now I want to add a 'filter' box above the list of colors, similar to the filter you can get above a list of columns like this:I was hoping that there was some easy way to dump a filt...