I generally will set it up something like this:
 
sub Tab_Click
{
    &Tab();
}
 
sub Tab
{
    # do stuff here
    return 1;
}
 
 
then you can call Tab() directly from your code or via a _Click event.

-----Original Message-----
From: Magnone, Angelo [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 30, 2002 14:19
To: 'Peter Eisengrein'; Magnone, Angelo; [EMAIL PROTECTED]
Sourceforge. Net (E-mail)
Subject: RE: [perl-win32-gui-users] force a "tab selection" from a tabstri p


I believe this will only "show" the actual tab you selected.  I'm using GUI
LOFT and what I'd like to do is force a "mouse click" on the tab... so that
all the associated fields for that tab are displayed.
 
Any ideas?
 


-----Original Message-----
From: Peter Eisengrein [mailto:[EMAIL PROTECTED]
Sent: Wednesday, October 30, 2002 2:13 PM
To: 'Magnone, Angelo'; [EMAIL PROTECTED] Sourceforge. Net (E-mail)
Subject: RE: [perl-win32-gui-users] force a "tab selection" from a tabstri p



$tabstrip1->Select(0); # selects the 1st tab 
$tabstrip1->Select(1); # selects the 2nd tab 
$tabstrip1->Select(2); # selects the 3rd tab 
...etc... 




-----Original Message----- 
From: Magnone, Angelo [ mailto:[EMAIL PROTECTED]
<mailto:[EMAIL PROTECTED]> ] 
Sent: Wednesday, October 30, 2002 13:51 
To: [EMAIL PROTECTED] Sourceforge. Net (E-mail) 
Subject: [perl-win32-gui-users] force a "tab selection" from a tabstrip 




Is there any way to force a "tab selection" from a tabstrip... for example
using $tabstrip1->Show(); 
Thanks :) 


------------------------------------------------------------ 
This e-mail may be privileged and/or confidential, and the sender does not
waive any related rights and obligations. Any distribution, use or copying
of this e-mail or the information it contains by other than an intended
recipient is unauthorized. If you received this e-mail in error, please
advise me (by return e-mail or otherwise) immediately. 

Ce courriel est confidentiel et protégé. L'expéditeur ne renonce pas aux
droits et obligations qui s'y rapportent. Toute diffusion, utilisation ou
copie de ce message ou des renseignements qu'il contient par une personne
autre que le (les) destinataire(s) désigné(s) est interdite. Si vous recevez
ce courriel par erreur, veuillez m'en aviser immédiatement, par retour de
courriel ou par un autre moyen. 


============================================================ 

Reply via email to