Excellent, Thanks to all that applied, the tabbing feature now works, you have to add $Window->{-dialogui} = 1; to get this going in a window and the default button works ok as long as you set -ok => 1. Don't know what the -default =>1, does but it didn't make any difference to my code (that I could see! ;-))
Thanks all, Darin -------------------------------------------- Darin Cruickshanks Labs Manager, Computing Service University of Essex [EMAIL PROTECTED] 01206 873585 -----Original Message----- From: Christian Kappler [mailto:[EMAIL PROTECTED] Sent: 14 April 2003 15:31 To: Cruickshanks, Darin; Perl-Win32-GUI Mailinglist Subject: Re: [perl-win32-gui-users] Tabbing and Accelerator problems Hello, On Monday, April 14, 2003 3:30 PM, "Cruickshanks, Darin" <[EMAIL PROTECTED]> wrote: >... > The problem with the tabbing is that I cant get it to > work at all, I have read the documentation that is > available but I must be missing something. Anyone got > any ideas? You will have to add "-tabstop => 1" for every control you want to to and from. This should be enogh if the controls are part of a Win32::GUI::DialogBox. If they are part of a Win32::GUI::Window in addition you will have to do something like the following: my $Window = new Win32::GUI::Window(%options); $Window->{-dialogui} = 1; Regards, Christian