Does anyone know how to inlude a button(s) in a Tabstop, below is some sample
code I am using and I would like to tab to $b1,$b2 and $b3.

Thanks in anticipation.

$desk_input = $l->AddTextfield(
               -left    =>135,
               -top     =>20,
               -width   =>110,
               -height  =>20,
               -tabstop =>1,
               -group     =>1,
               );

$desk_input->SendMessage(197, 3, 0);

# Add a Text Field and assign the name User Name

$user_input = $l->AddTextfield(
               -left    =>110,
               -top     =>45,
               -width   =>135,
               -height  =>20,
               -group   =>1,
               -tabstop =>1,
               );

# Add a combobox and assign the name division

$division_input = $l->AddCombobox(
               -name      =>"division_input",
               -left    =>110,
               -top     =>70,
               -width   =>135,
               -height  =>220,
               -style   => WS_VISIBLE | 2 | WS_NOTIFY,
               -group   =>1,
               -tabstop =>1,
               );

$division_input->InsertItem("Finance");
$division_input->InsertItem("IT Services");
$division_input->InsertItem("Asset");

# Add the Control Buttons

$b1 = MakeControl ("AddButton", 2, 5, 10, "   OK   ", "OK");
$b2 = MakeControl ("AddButton", 13, 5, 10, " Exit ", "Exit");
$b3 = MakeControl ("AddButton", 24, 5, 10, " Help ", "H


The information in this e-mail and any attachments is confidential and may be
legally privileged. It is intended solely for the addressee or addressees. If
you are not an intended recipient, please delete the message and any attachments
and notify the sender of misdelivery: any use or disclosure of the contents of
either is unauthorised and may be unlawful. All liability for viruses is
excluded to the fullest extent permitted by law. Any views expressed in this
message are those of the individual sender, except where the sender states them,
with requisite authority, to be those of a specific LAZARD company or
partnership.


_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Reply via email to