Re: [perl-win32-gui-users] Documentation

2001-02-02 Thread Aldo Calpini
Shain Edge wrote:
> Hi. I just installed Win32-GUI and found absolutely _no_
> documentation with it. Where can I find the documents for help
> on using it?

download the source tree (Win32-GUI package on SourceForge) for
samples and documentation.

THE PPM DISTRIBUTION CONTAINS ONLY THE PRECOMPILED BINARY MODULE

if you don't have a C compiler (getting tired and sick of
repeating this... ;-).


cheers,
Aldo

__END__
$_=q,just perl,,s, , another ,,s,$, hacker,,print;





[perl-win32-gui-users] win32::gui

2001-02-02 Thread Danny Zak
Dear perl-win32-gui-users,

  i first want to send a real big package of congrats to the
  developers of this fasinating module..

  It is great.. i already have some nice ideas of using the module,
  but as for now it is still in test or development phase ?

  In the docs i can find lots of TBD (to be dones), is this refering
  only to the documentation or also the total concept of development ?
  
Best regards,
 Danny Zak   mailto:[EMAIL PROTECTED]
 co-ceo 

Euro-Pictures/belGOnet.com
Princesse Elisabeth Square 9/11
1030 Brussels
Belgium

Tel : +32-(0)2-215.67.65
Fax : +32-(0)2-215.66.65





Re: [perl-win32-gui-users] win32::gui

2001-02-02 Thread Aldo Calpini
Danny Zak wrote:
> Dear perl-win32-gui-users,
>
> i first want to send a real big package of congrats to the
> developers of this fasinating module..

thanks :-)

> It is great.. i already have some nice ideas of using the module,
> but as for now it is still in test or development phase ?

it's a beta version, but it's almost mature. there's always
(there will always be?) a lot of space for improvement, but it
can be considered 'robust' enough.

> In the docs i can find lots of TBD (to be dones), is this
> refering only to the documentation or also the total concept of
> development ?

TBD really stands for 'to be documented' :-)
what you'll find in the documentation is developed, but not
yet documented.


cheers,
Aldo

__END__
$_=q,just perl,,s, , another ,,s,$, hacker,,print;





Re: [perl-win32-gui-users] Documentation

2001-02-02 Thread Shain Edge
Hehe.. 

The question I would ask is why isn't the documentation in all of the other 
distributions, or at least a file to itself with a link to it in the source 
code? I found the Win32-GUI accidently by doing a Win32 search on the PPM. It 
looked like something that would interest me so I DLed it, looked at it and 
blinked, wondering how to use it? Second step was looking around at the files 
that were installed and only found the creator's e-mail. Then I searched around 
more and found only other types of distributions of the product, but no docs. 
So I ended up posting the question. 

This goes to another question. What are the primary differences between 
Win32-GUI and Perl-Tk?

Shain

 Begin Original Message 

Shain Edge wrote:
> Hi. I just installed Win32-GUI and found absolutely _no_
> documentation with it. Where can I find the documents for help
> on using it?

download the source tree (Win32-GUI package on SourceForge) for
samples and documentation.

THE PPM DISTRIBUTION CONTAINS ONLY THE PRECOMPILED BINARY MODULE

if you don't have a C compiler (getting tired and sick of
repeating this... ;-).


 End Original Message 



Sent by AcmeCity Mail



Antwort: Re: [perl-win32-gui-users] Tabstrips

2001-02-02 Thread thomas . emde . te
Laurent,

this is great! Thank's a lot.

Thomas




[EMAIL PROTECTED]@[EMAIL PROTECTED] on 02.02.2001 05:36:52
Bitte antworten an perl-win32-gui-users@lists.sourceforge.net@INTERNET
Gesendet von: [EMAIL PROTECTED]

An: perl-win32-gui-users@lists.sourceforge.net@INTERNET
Kopie:
Thema: Re: [perl-win32-gui-users] Tabstrips

Hello,

An other solution for hide and show TabStrip page.

This is a TabStrip test, i have made.
I use a GroupBox for each Page, and attach elements on it.
Then, just show and hide the good GroupBox.

Laurent.

- Original Message -
From: <[EMAIL PROTECTED]>

> might be a silly question but anyway: How can I remove all Elements from a
> Window in case a different Tab on a Tabstrip is
> clicked and different Elements should be displayed on the Window
accordingly?
> Or can I define separate "Panels" with
> different Elements for each Tab?

> Thomas Emde





Antwort: Re: [perl-win32-gui-users] Tabstrips

2001-02-02 Thread thomas . emde . te
Hi,

seems that my joy was a little too early: If I create a button named "button"
and add it to a certain GroupBox (-parent => $Win->box)
then the subroutine "Button_Click" does not seem to react on my clicks on the
button...

regards,
Thomas




[EMAIL PROTECTED]@[EMAIL PROTECTED] on 02.02.2001 05:36:52
Bitte antworten an perl-win32-gui-users@lists.sourceforge.net@INTERNET
Gesendet von: [EMAIL PROTECTED]

An: perl-win32-gui-users@lists.sourceforge.net@INTERNET
Kopie:
Thema: Re: [perl-win32-gui-users] Tabstrips

Hello,

An other solution for hide and show TabStrip page.

This is a TabStrip test, i have made.
I use a GroupBox for each Page, and attach elements on it.
Then, just show and hide the good GroupBox.

Laurent.

- Original Message -
From: <[EMAIL PROTECTED]>

> might be a silly question but anyway: How can I remove all Elements from a
> Window in case a different Tab on a Tabstrip is
> clicked and different Elements should be displayed on the Window
accordingly?
> Or can I define separate "Panels" with
> different Elements for each Tab?

> Thomas Emde





RE: [perl-win32-gui-users] AcceleratorTable

2001-02-02 Thread Peter Eisengrein
I may be wrong, but I've found that you cannot call a _Click() directly (you
actually have to Click on something). I'd try this with your subs:
 
sub Open_Click {
Open();
}
 
sub Open {
my $file=GUI::GetOpenFileName(-title=>"File To Open",
-filter=>["*.*"],);
}
sub OpenHK_Click {
Open;
}

-Original Message-
From: Erick J. Bourgeois [mailto:[EMAIL PROTECTED]
Sent: Thursday, February 01, 2001 12:18 PM
To: perl-win32-gui-users@lists.sourceforge.net
Subject: [perl-win32-gui-users] AcceleratorTable


I'm working on an accelerator table and I have written this thus far, but it
isn't responding to the keys:
 
use Win32::GUI;
 
$HotKey = new Win32::GUI::AcceleratorTable(
"Ctrl-O" => "OpenHK",
);
$Menu = Win32::GUI::MakeMenu(
"&File"=> "File",
"> &Open   Ctrl+O" => "Open",
);
$MainWin = new Win32::GUI::Window(
-name => "MainWin",
-text => "Accelerator Table",
-accel => $HotKey,
-size => [200, 200],
-pos => [70, 70],
-menu => $Menu,
);
 
$MainWin->Show();
Win32::GUI::Dialog();
 
sub MainWin_Terminate {
$MainWin->Hide();
return -1;
}
sub Open_Click {
my $file=GUI::GetOpenFileName(-title=>"File To Open",
-filter=>["*.*"],);
}
sub OpenHK_Click {
Open_Click();
}
#EOF---#
 
erick
never stop questioning
www.jeb.ca