in reply to Re: Tk::ListBox questions
in thread Tk::ListBox questions

I tried adding the following in the subroutine, but it had no effect
sub Additional_Criteria { #code her to test if check box is selected or not if ($chkoptions) { print "Enable\n"; $lst_properties->configure(-state=>'normal'); } else { print "Disable\n"; #Code here to DISABLE ListBox } }