in reply to Re: Binding an action to an item in a Listbox
in thread Binding an action to an item in a Listbox

Hi eoin. With pop-up dialogs like this which the user may open and close several times, it's often a good idea to hold onto them and not create and destroy them each time. So if you say this within sub load:
$open->withdraw();
And also test in the routine where you create $open:
if (defined $open) { $open->deiconify(); } else { # create the dialog window here }
That should do the trick. Make sure $open is a my variable at the top scope level instead of just within the routine, of course.