You can subscribe to this list here.
| 2001 |
Jan
(226) |
Feb
(139) |
Mar
(156) |
Apr
(95) |
May
(181) |
Jun
(166) |
Jul
(80) |
Aug
(59) |
Sep
(69) |
Oct
(83) |
Nov
(142) |
Dec
(33) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(42) |
Feb
(91) |
Mar
(76) |
Apr
(113) |
May
(67) |
Jun
(68) |
Jul
(37) |
Aug
(41) |
Sep
(16) |
Oct
(135) |
Nov
(51) |
Dec
(21) |
| 2003 |
Jan
(37) |
Feb
(36) |
Mar
(37) |
Apr
(103) |
May
(68) |
Jun
(70) |
Jul
(77) |
Aug
(12) |
Sep
(9) |
Oct
(53) |
Nov
(88) |
Dec
(63) |
| 2004 |
Jan
(263) |
Feb
(106) |
Mar
(36) |
Apr
(21) |
May
(21) |
Jun
(34) |
Jul
(33) |
Aug
(34) |
Sep
(35) |
Oct
(21) |
Nov
(43) |
Dec
(63) |
| 2005 |
Jan
(28) |
Feb
(42) |
Mar
(29) |
Apr
(14) |
May
(41) |
Jun
(20) |
Jul
(65) |
Aug
(136) |
Sep
(41) |
Oct
(74) |
Nov
(34) |
Dec
(94) |
| 2006 |
Jan
(85) |
Feb
(94) |
Mar
(68) |
Apr
(103) |
May
(66) |
Jun
(51) |
Jul
(24) |
Aug
(56) |
Sep
(57) |
Oct
(85) |
Nov
(73) |
Dec
(68) |
| 2007 |
Jan
(59) |
Feb
(32) |
Mar
(13) |
Apr
(32) |
May
(36) |
Jun
(36) |
Jul
(64) |
Aug
(35) |
Sep
(19) |
Oct
(10) |
Nov
(13) |
Dec
(20) |
| 2008 |
Jan
(26) |
Feb
(41) |
Mar
(19) |
Apr
(24) |
May
(16) |
Jun
(33) |
Jul
(34) |
Aug
(4) |
Sep
(11) |
Oct
|
Nov
(26) |
Dec
(23) |
| 2009 |
Jan
(5) |
Feb
(2) |
Mar
(21) |
Apr
(16) |
May
(13) |
Jun
(6) |
Jul
(34) |
Aug
(2) |
Sep
(1) |
Oct
(7) |
Nov
(5) |
Dec
(24) |
| 2010 |
Jan
(3) |
Feb
(5) |
Mar
(6) |
Apr
(6) |
May
(14) |
Jun
(6) |
Jul
(1) |
Aug
(12) |
Sep
(10) |
Oct
(9) |
Nov
|
Dec
(2) |
| 2011 |
Jan
(4) |
Feb
(5) |
Mar
(30) |
Apr
(1) |
May
(2) |
Jun
(5) |
Jul
(3) |
Aug
(2) |
Sep
(3) |
Oct
|
Nov
(6) |
Dec
|
| 2012 |
Jan
|
Feb
(10) |
Mar
|
Apr
|
May
(1) |
Jun
(3) |
Jul
(1) |
Aug
|
Sep
(2) |
Oct
|
Nov
(2) |
Dec
(4) |
| 2013 |
Jan
(5) |
Feb
(3) |
Mar
|
Apr
(3) |
May
|
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2014 |
Jan
(2) |
Feb
|
Mar
|
Apr
(1) |
May
(3) |
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(9) |
Nov
(7) |
Dec
|
| 2015 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(4) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2017 |
Jan
(1) |
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(1) |
Nov
(5) |
Dec
|
| 2019 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(2) |
Sep
|
Oct
|
Nov
|
Dec
|
|
From: christopher s. <chr...@ya...> - 2001-02-03 16:34:36
|
hi all
I posted this question before and I didnt even get once response.
So Im posting it in a different color.
Please tell me if this question is totally off topic here .
If it is , can anyone suggest a suitable mailing list for this question
I thought since the finest win32 api minds hang out here I would post it =
here
The code is taken from the actual example
---------------------------------------------------------------------
$|=3D1;
use Win32::RASE;
print "\nI'm dialing via the first RAS entry: $first_RAS_entry\n\n";
($UserName, $Password) =3D RasGetUserPwd($first_RAS_entry)
or die Win32::RASE::FormatMessage;
print "UserName:";
!$UserName ? chomp($UserName=3D<>) : print "$UserName\n";
print "Password:";
!$Password ? chomp($Password=3D<>) : print "$Password\n";
$hrasconn =3D RasDial($first_RAS_entry, undef , $UserName, $Password)
or die Win32::RASE::FormatMessage;
#($err, $status) =3D RasDial("CLICK", "DP 110-6511" , $UserName, =
$Password,undef,undef)
# or die Win32::RASE::FormatMessage;
print "Connected, \$hrasconn=3D$hrasconn\n";
print "\n\n------next line---\n\n";
#=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D don't edit under this =
line =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
sub FindOpenedFolders () {
# returns array of hwnd's of the opened folders
my $findAfter =3D 0;
my @folders;
$FindWindowEx ||=3D new Win32::API("user32", "FindWindowEx", =
[N,N,P,P], N);
while($findAfter =3D $FindWindowEx->Call(0, $findAfter, =
"CabinetWClass", 0)) {
push @folders, $findAfter;
}
$findAfter =3D 0;
while($findAfter =3D $FindWindowEx->Call(0, $findAfter, =
"ExploreWClass", 0)) {
push @folders, $findAfter;
}
@folders;
}
sub CloseWindow ($) {
# arg - hwnd
$PostMessage ||=3D new Win32::API("user32", "PostMessage", [N,N,N,N], =
I);
$WN_CLOSE =3D 0x10;
$PostMessage->Call(shift, $WN_CLOSE, 0, 0);
}
BEGIN {
require Win32::API;
unless ($hwnd =3D (FindOpenedFolders())[0]) {
system 'start explorer /n,C:\\';
$start_time =3D time;
while (!($hwnd =3D (FindOpenedFolders())[0]) && $start_time+3 < =
time) {}
$hwnd or die "Could not open C:\\ window\n";
$hwnd_opened =3D 1;
}
$first_RAS_entry =3D (RasEnumEntries())[0]
or die "No one RAS entry were found\n";
}
END { CloseWindow($hwnd) if $hwnd_opened }
=20
The above code when run , starts dialing right away ...
but I want sample codes for=20
1) invoking the default original windows DUN dialog .
2) to check whether the user is connected to the internet
3) to disconnet from internet
any help will be greatly appreciated
or should I use any other perl module ?
chris
www.perl-resume.com
|
|
From: Erick J. B. <er...@e-...> - 2001-02-03 16:03:40
|
The subs that you supplied do not respond to the keys either. Any more = ideas? erick never stop questioning www.jeb.ca ----- Original Message -----=20 From: Peter Eisengrein=20 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=3DGUI::GetOpenFileName(-title=3D>"File To Open", = -filter=3D>["*.*"],); } sub OpenHK_Click { Open; } |
|
From: Peter E. <Pet...@at...> - 2001-02-02 22:00:02
|
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:er...@e-...]
Sent: Thursday, February 01, 2001 12:18 PM
To: per...@li...
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 <http://www.jeb.ca>
|
|
From: <tho...@ba...> - 2001-02-02 15:13:03
|
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
ro...@cl...@INT...@li... on 02.02.2001 05:36:52
Bitte antworten an per...@li...@INTERNET
Gesendet von: per...@li...
An: per...@li...@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: <tho...@ba...>
> 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
|
|
From: <tho...@ba...> - 2001-02-02 13:16:29
|
Laurent,
this is great! Thank's a lot.
Thomas
ro...@cl...@INT...@li... on 02.02.2001 05:36:52
Bitte antworten an per...@li...@INTERNET
Gesendet von: per...@li...
An: per...@li...@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: <tho...@ba...>
> 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
|
|
From: Shain E. <ek...@ac...> - 2001-02-02 10:26:53
|
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 |
|
From: Aldo C. <da...@pe...> - 2001-02-02 09:44:43
|
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; |
|
From: Danny Z. <da...@be...> - 2001-02-02 09:30:26
|
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:da...@be... 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 |
|
From: Aldo C. <da...@pe...> - 2001-02-02 09:07:49
|
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; |
|
From: Shain E. <ek...@ac...> - 2001-02-02 07:01:37
|
Hi. I just installed Win32-GUI and found absolutely _no_ documentation with it. Where can I find the documents for help on using it? Thanks, Shain Sent by AcmeCity Mail |
|
From: Peter E. <Pet...@at...> - 2001-02-02 02:52:07
|
Anyone know what the maximum allowed value is for the ->SetRange($min,$max) on Win32::GUI::AddProgressBar? I am trying to have it be set dynamically based upon a file size and it would appear that if a file is too big the $max gets set to some default. for example: my $ProgressWindow = new Win32::GUI::DialogBox( -name => "ProgressWindow", -left => 300, -top => 300, -width => 400, -height => 100, -title => "Loading file...", ); $ProgressWindow->AddProgressBar( -name => "PB", -left => 20, -top => 25, -width => 350, -height => 20, -smooth => 1, ); $max = ((stat($file))[7] / 80); ### assuming 80 chars per line $ProgressWindow->PB->SetRange(0,$max); |
|
From: Peter E. <Pet...@at...> - 2001-02-02 02:51:20
|
Anyone know what the maximum allowed value is for the ->SetRange($min,$max) on Win32::GUI::AddProgressBar? I am trying to have it be set dynamically based upon a file size and it would appear that if a file is too big the $max gets set to some default. for example: my $ProgressWindow = new Win32::GUI::DialogBox( -name => "ProgressWindow", -left => 300, -top => 300, -width => 400, -height => 100, -title => "Loading file...", ); $ProgressWindow->AddProgressBar( -name => "PB", -left => 20, -top => 25, -width => 350, -height => 20, -smooth => 1, ); $max = ((stat($file))[7] / 80); ### assuming 80 chars per line $ProgressWindow->PB->SetRange(0,$max); |
|
From: Laurent R. <ro...@cl...> - 2001-02-01 22:14:21
|
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: <tho...@ba...>
> 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
|
|
From: Erick J. B. <er...@e-...> - 2001-02-01 17:20:56
|
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 =3D new Win32::GUI::AcceleratorTable(
"Ctrl-O" =3D> "OpenHK",
);
$Menu =3D Win32::GUI::MakeMenu(
"&File" =3D> "File",
"> &Open Ctrl+O" =3D> "Open",
);
$MainWin =3D new Win32::GUI::Window(
-name =3D> "MainWin",
-text =3D> "Accelerator Table",
-accel =3D> $HotKey,
-size =3D> [200, 200],
-pos =3D> [70, 70],
-menu =3D> $Menu,
);
$MainWin->Show();
Win32::GUI::Dialog();
sub MainWin_Terminate {
$MainWin->Hide();
return -1;
}
sub Open_Click {
my $file=3DGUI::GetOpenFileName(-title=3D>"File To Open", =
-filter=3D>["*.*"],);
}
sub OpenHK_Click {
Open_Click();
}
#------------EOF---------------#
erick
never stop questioning
www.jeb.ca
|
|
From: Erick J. B. <er...@e-...> - 2001-02-01 13:51:28
|
When using, for example:
$Window->AddButton(
-name =3D> "Frame",
-pos =3D> [10, 70],
-size =3D> [275, 200],
-text =3D> "Hello World!",
-style =3D> BS_GROUPBOX,
-visible =3D> 1,
);
to create a Frame (or GroupBox), how do you change the background color =
for the text?
erick
www.jeb.ca
|
|
From: christopher s. <chr...@ya...> - 2001-02-01 10:37:48
|
Yes it is available at the archives ... I just copied the subroutine long time ago. You need to search the archives and find out yourself ..sorry chris www.perl-resume.com ----- Original Message ----- From: <tho...@ba...> To: <per...@li...> Sent: Thursday, February 01, 2001 12:09 PM Subject: Antwort: Re: [perl-win32-gui-users] Tabstrips Thank you! Is the complete script available somewhere? cheers, Thomas _______________________________________________ Perl-Win32-GUI-Users mailing list Per...@li... http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
|
From: <tho...@ba...> - 2001-02-01 06:40:37
|
Thank you! Is the complete script available somewhere? cheers, Thomas |
|
From: Peter E. <Pet...@at...> - 2001-01-31 19:34:15
|
I've noticed that CTRL-c (KeyPress 3), CTRL-v (KeyPress 22), CTRL-x (KeyPress 24), and CTRL-z (KeyPress 26) do in fact copy/paste/cut/undo to/from the clipboard without the Win32::Clipboard module, at least it does in one of my scripts (perl v5.6.0 and Win32::GUI v0.0.490). But I have had problems making a menu Edit->Copy work. I tried using Win32::Clipboard in conjuntion with my sub EditCopy_Click but with no luck -- I haven't been able to figure out how to tell Win32::Clipboard what was selected. Any ideas? -----Original Message----- From: Aldo Calpini [mailto:da...@pe...] Sent: Monday, January 29, 2001 9:43 AM To: Jonathan Southwick Subject: Re: [perl-win32-gui-users] Richedit Copy Jonathan Southwick wrote: > I have some text in a Richedit object. I'd like to be able to > copy any text that I select but it doesn't work. Is there > sojmething special I have to do? what do you mean by copy? in the clipboard? if so, you need the Win32::Clipboard module. cheers, Aldo __END__ $_=q,just perl,,s, , another ,,s,$, hacker,,print; _______________________________________________ Perl-Win32-GUI-Users mailing list Per...@li... http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
|
From: Erick J. B. <er...@e-...> - 2001-01-31 16:45:04
|
I'm sending this email as a last resort. I can't figure out how to =
change the background color of a listview. I tried the following:
$Window->ListView->BackColor(hex("0000FF"));
$Window->ListView->BackGround(hex("0000FF"));
There is an option for text color (TextColor(hex("0000FF"))).
erick
never stop questioning
www.jeb.ca
|
|
From: christopher s. <chr...@ya...> - 2001-01-31 16:33:18
|
I found this sub in the old win32 GUI archive thought it might be useful
sub Tab_Click {
my $current_tab = $W->Tab->SelectedItem();
foreach $key (keys %{$W->Tab}) {
# Skip these items - what remains should be just widgets.
next if (grep(/^${key}$/,qw(-handle -name -type)));
$ref = $W->Tab->{$key};
if ($debug) {
print "key: $key"," value: ",$W->Tab->{$key},"\n";
print " -name: ",$ref->{-name},"\n";
print " -text: ",$ref->{-text},"\n";
}
# Strip off number from end of -name - use as tabid.
# A better way would be to define something like "-tabid => .."
# But this does not carry over after the widget is defined.
$tabid = substr($ref->{-name},-1);
if ($current_tab == $tabid) {
$ref->Show();
}
else {
$ref->Hide();
}
}
}
Hope that helps
chris
www.perl-resume.com
----- Original Message -----
From: <tho...@ba...>
To: <per...@li...>
Sent: Wednesday, January 31, 2001 9:12 PM
Subject: [perl-win32-gui-users] Tabstrips
Hello,
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?
mit freundlichen Grüßen/with best regards
Thomas Emde
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
BAYER AG
IS-CT DPN
D-51386 Leverkusen
Fon: +49 (0) 214/30-81513
Fax: +49 (0) 214/30-31737
E-Mail: tho...@ba...
_______________________________________________
Perl-Win32-GUI-Users mailing list
Per...@li...
http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
_________________________________________________________
Do You Yahoo!?
Get your free @yahoo.com address at http://mail.yahoo.com
|
|
From: Jonathan S. <jso...@al...> - 2001-01-31 16:17:26
|
Here is how I did it:
$MainWindow->AddTabStrip(
-name =3D> "FindTabStrip",
-left =3D> 10,
-top =3D> 10,
-width =3D> $MainWindow->ScaleWidth - 250,
-height =3D> 175,
-hottrack =3D> 1,
);
$MainWindow->FindTabStrip->InsertItem(-text =3D> "Name");
$MainWindow->FindTabStrip->InsertItem(-text =3D> "Building");
$MainWindow->FindTabStrip->InsertItem(-text =3D> "Adapter Address");
Then in the subs:
sub FindTabStrip_Click {
if ($MainWindow->FindTabStrip->SelectedItem =3D=3D 0) {
$MainMenu->{FindName}->Checked(1);
$MainMenu->{FindBuilding}->Checked(0);
$MainMenu->{FindAdapter}->Checked(0);
$MainWindow->Bld_Label->Hide();
$Building->Hide();
$MainWindow->SelectFromList->Hide();
$BuildingList->Hide();
$MainWindow->Adapt_Label->Hide();
$Adapter->Hide();
$MainWindow->FN_Label->Show();
$FirstName->Show();
$MainWindow->LN_Label->Show();
$LastName->Show();
$FirstName->SetFocus();
}
if ($MainWindow->FindTabStrip->SelectedItem =3D=3D 1) {
$MainMenu->{FindName}->Checked(0);
$MainMenu->{FindBuilding}->Checked(1);
$MainMenu->{FindAdapter}->Checked(0);
$MainWindow->FN_Label->Hide();
$FirstName->Hide();
$MainWindow->LN_Label->Hide();
$LastName->Hide();
$MainWindow->Adapt_Label->Hide();
$Adapter->Hide();
$MainWindow->Bld_Label->Show();
$Building->Show();
$MainWindow->SelectFromList->Show();
$Building->SetFocus();
}
if ($MainWindow->FindTabStrip->SelectedItem =3D=3D 2) {
$MainMenu->{FindName}->Checked(0);
$MainMenu->{FindBuilding}->Checked(0);
$MainMenu->{FindAdapter}->Checked(1);
$MainWindow->FN_Label->Hide();
$FirstName->Hide();
$MainWindow->LN_Label->Hide();
$LastName->Hide();
$MainWindow->Bld_Label->Hide();
$Building->Hide();
$MainWindow->SelectFromList->Hide();
$BuildingList->Hide();
$MainWindow->Adapt_Label->Show();
$Adapter->Show();
$Adapter->SetFocus();
}
return;
}
maybe there is an easier way but I didn't know about it so that was the w=
ay
i got around it.
Jonathan Southwick
Technical & Network Services
Allegheny College, Meadsville, PA
jso...@al...
----- Original Message -----
From: <tho...@ba...>
To: <per...@li...>
Sent: Wednesday, January 31, 2001 10:42 AM
Subject: [perl-win32-gui-users] Tabstrips
> Hello,
>
> might be a silly question but anyway: How can I remove all Elements fro=
m 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?
>
> mit freundlichen Gr=FC=DFen/with best regards
> Thomas Emde
> nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
> nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn
>
> BAYER AG
> IS-CT DPN
> D-51386 Leverkusen
> Fon: +49 (0) 214/30-81513
> Fax: +49 (0) 214/30-31737
> E-Mail: tho...@ba...
>
> _______________________________________________
> Perl-Win32-GUI-Users mailing list
> Per...@li...
> http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users
>
|
|
From: <tho...@ba...> - 2001-01-31 15:43:12
|
Hello, 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? mit freundlichen Grüßen/with best regards Thomas Emde nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn nnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnnn BAYER AG IS-CT DPN D-51386 Leverkusen Fon: +49 (0) 214/30-81513 Fax: +49 (0) 214/30-31737 E-Mail: tho...@ba... |
|
From: Aldo C. <da...@pe...> - 2001-01-31 13:52:06
|
Eoi...@de... wrote: > Guys/galls.. > I am behind a firewall and can't install from the net using PPM , > the only way I can install is to download it and install it > Locally, > > But when I Do I get the following error > > C:\>ppm > PPM interactive shell (2.1.2) - type 'help' for available > commands. > PPM> install --location=c:/ win32-gui > Install package 'win32-gui?' (y/N): y > Installing package 'win32-gui'... > Can't find unicode character property definition via main->e > or e.pl at unicode/ > Is/e.pl line 0 seems like your PPM is broken. can you successfully install other packages? cheers, Aldo __END__ $_=q,just perl,,s, , another ,,s,$, hacker,,print; |
|
From: Aldo C. <da...@pe...> - 2001-01-31 13:50:20
|
Eoi...@de... wrote: > Butler, Eoin would like to recall the message, > "[perl-win32-gui-users] Win32-GUI Installation". I hate this. please stop 'recalling' messages. cheers, Aldo __END__ $_=q,just perl,,s, , another ,,s,$, hacker,,print; |
|
From: <Eoi...@de...> - 2001-01-31 12:43:02
|
Guys/galls.. I am behind a firewall and can't install from the net using PPM , the only way I can install is to download it and install it Locally, But when I Do I get the following error C:\>ppm PPM interactive shell (2.1.2) - type 'help' for available commands. PPM> install --location=c:/ win32-gui Install package 'win32-gui?' (y/N): y Installing package 'win32-gui'... Can't find unicode character property definition via main->e or e.pl at unicode/ Is/e.pl line 0 Rgds Eoin: EMF2 Test Engineering mailto:Eoi...@de... -----Original Message----- From: tho...@ba... [mailto:tho...@ba...] Sent: 30 January 2001 09:47 To: - *per...@li... Subject: [perl-win32-gui-users] Win32-GUI 0.0.558 Installation Hello, I installed Win32-GUI 0.0.502 via PPM successfully but would like to use 0.0.558. Running "make" failed with both Borland's and Dev-C++'s "make": C:\Perl\Win32-GUI-0.0.558>\borland\bcc55\bin\make MAKE Version 5.2 Copyright (c) 1987, 2000 Borland Fatal makefile 799: No terminator specified for in-line file operator C:\Perl\Win32-GUI-0.0.558>\dev-c++\bin\make Makefile:303: *** missing separator. Stop. C:\Perl\Win32-GUI-0.0.558> Any ideas? best regards, Thomas _______________________________________________ Perl-Win32-GUI-Users mailing list Per...@li... http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |