in reply to Tk: Cannot focus in DialogBox when DynaTabFrame has page

Hi,

You can add a line to delay focusing the dialog:

$dialog->configure(-focus => $entry); $mw->after(250,[$dialog,'focus']); $dialog->Show();

This works around a hardcoded 200 delay in DynaTabFrames configure handling.

update: You could as well delay the call to &dialog using 'after'

Cheers, Christoph