in reply to Perl/TK Database
If you're processing and want Tk to be responsive (redraws, respond to events, etc...) during that processing, then call idletasks on the top-level widget in your processing loop:$widget->update();
$mainwindow->idletasks();
|
|---|