Hello,

I am writing a calendar dialog having lots of buttons. For some reason I
have to make some buttons visible or invisible. Therefore I use the Change
method with -visible => 1 or 0. If I do that after $win->Show(), then the
buttons don't disappear. I tried $win->DoEvents(), $win->SetRedraw(1) and
much more. The only thing which worked was:

$win->Hide();
$win->Show();

Is this the only method? Any help appreciated.

Peter


Reply via email to