Joe Stewart wrote:
>Is the 'ol windows standard "tab key to get to the next field" implemented
>in Win32::GUI?

hello boyz!
yes, the tabstop is implemented (gosh, it puzzled me for some months...),
but only for DialogBoxes, not for Windows; eg.:

$W = new Win32::GUI::DialogBox(
    -name => "Window",
    -left => 0, # etc...
);

$B = $W->AddButton(
    -name => "Button",
    -tabstop => 1,
);

DialogBox controls can also have the -group option (0/1), which will "group"
a series of controls so you can move between them with the arrow keys.

BTW, this solution doesn't really satisfy me, I would like Windows too to
intercept tabstops and arrowkeys, but it seems things are done to work this
way in the Win32 SDK... or maybe there's something I still have to
understand :-)

HTH.

Bye,
Aldo Calpini
<[EMAIL PROTECTED]>

 LIBERA ME DOMINE DE MORTE AETERNA
 IN DIE ILLA TREMENDA
 QUANDO COELI MOVENDI SUNT
 ET TERRA




Reply via email to