From: <ma...@mm...> - 2002-04-26 03:58:14
|
-tabstop => 1. pretty sure it only works with a gui::dialog. "John Crawford" <joh...@au...> To: Sent by: <per...@li...> per...@li...urc cc: eforge.net Subject: [perl-win32-gui-users] Tabbing between controls 26/04/02 01:31 PM What's the secret of allowing tabbing between controls? -style => WS_TABSTOP doesn't seem to have any effect. jmc _______________________________________________ Perl-Win32-GUI-Users mailing list Per...@li... https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
From: <ma...@mm...> - 2002-04-26 03:58:51
|
sorry. make that it only works with a window, not a dialog. "John Crawford" <joh...@au...> To: Sent by: <per...@li...> per...@li...urc cc: eforge.net Subject: [perl-win32-gui-users] Tabbing between controls 26/04/02 01:31 PM What's the secret of allowing tabbing between controls? -style => WS_TABSTOP doesn't seem to have any effect. jmc _______________________________________________ Perl-Win32-GUI-Users mailing list Per...@li... https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
From: <pko...@me...> - 2002-04-26 08:33:48
|
Hello! Yes, "tabstop =3D> 1" only works with windows. But why? Isn't it reasonab= le to use it with both? I use dialogs to get rid of icons in the taskbar for every child window. Or should I upgrade from 558 to 665? (By the way: What's about real modal dialogs with 665?) Regards, Peter > -----Urspr=FCngliche Nachricht----- > Von: per...@li... > [mailto:per...@li...]Im Auftrag von > ma...@mm... > Gesendet am: Freitag, 26. April 2002 05:53 > An: John Crawford > Cc: per...@li... > Betreff: Re: [perl-win32-gui-users] Tabbing between controls > > > sorry. make that it only works with a window, not a dialog. > > > > "John Crawford" > <joh...@au...> To: > Sent by: <perl= -wi...@li...> > per...@li...urc cc: > eforge.net Subje= ct: [perl-win32-gui-users] Tabbing > betwe= en controls > > 26/04/02 01:31 PM > > > > > > What's the secret of allowing tabbing between controls? -style =3D> > WS_TABSTOP doesn't seem to have any effect. > > jmc > > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > > > > > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > https://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > |
From: John C. <joh...@au...> - 2002-04-26 04:37:54
|
>> -tabstop => 1. pretty sure it only works with a gui::dialog. >> sorry. make that it only works with a window, not a dialog. Many thanks for prompt response. Unfortunately, I don't notice any effect either with a window or a dialog (and I'd particularly like it to work with a dialog). I'm using it with textfields: $loginWin->AddTextfield( -name => "Username", -left => 63, -top => 10, -text => "", -width => 120, -height => 22, -style => WS_VISIBLE | WS_TABSTOP, ); jmc |