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: Tom A. <to...@yt...> - 2001-02-09 18:33:35
|
I'm not sure if I should post this on this list or over on the Perl Win32 Users list. Under Win32::GUI version 502 and ActiveState build 623, the following script results in an access violation under NT 4 and an invalid page fault under Win98. NT is only telling me a memory address where the problem is occurring. Win98 claims that the invalid page fault is in Perl56.DLL. #! perl use Win32::GUI; # ** 1 ** fork(); # ** 2 ** # # The $' (or the $`) var has to be present in order to cause the crash, but # since it's not defined, use the "if (0)" to avoid interpreting it # if (0) { $'; # ** 3 ** } If you take out any of the lines marked "# ** n **" the problem goes away! At one point, I had a print("Goodbye\n"); as the last statement in the script. I got both of them (one from each branch of the fork()) which suggests that the problem is occurring in the rundown of Perl itself. If I had to guess, something is not getting cloned properly during the fork() and it's invalid when the GUI destructor(s) get invoked at termination. Cute huh? --- Tom Tom Allebrandi to...@yt... |
From: Erick J. B. <er...@e-...> - 2001-02-09 17:15:26
|
Has anyone had success using the SaveAsDialog? I'm using the SaveAsDialog in the following way: my %param = (title => "SaveAs", filters=>{'Filter 1' => '*.txt;*.doc', 'Filter 2' =>'*.pl;*.pm'}); my $file = SaveAsDialog %param, "foo.txt"; However, this, and other variants I have tried cause "...an invalid page fault in module PERL56.DLL at 017f:2804feea." Either there is something wrong with the function or I don't have the right syntax. Either way, any help would be greatly appreciated. erick never stop questioning www.jeb.ca |
From: Aldo C. <da...@pe...> - 2001-02-09 12:59:59
|
Erick J. Bourgeois wrote: > Is there a way of dynamically checking a labels visibility? > Well, dynamically would be the same as statically, so really > how can you test a label to check whether it is showing. > Something sort of like this: > >if ( $MainWin->Label_1->Visible ) { > ... > } else { ... } > > However, this code doesn't work because there is no method > "Visible" for a label. But, you can set the -visible option > of a label to 0. How do you find out whether it's 0 or 1? the method is called "IsVisible". if ( $MainWin->Label_1->IsVisible ) { ... } else { ... } cheers, Aldo __END__ $_=q,just perl,,s, , another ,,s,$, hacker,,print; |
From: David H. <dh...@wh...> - 2001-02-09 12:57:32
|
> Guys > I can't get to this site . > is there any other place I can Get it > Rgds Eoin: > EMF2 Test Engineering > mailto:Eoi...@de... > I'll email you a copy. dhiltz > -----Original Message----- > From: David Hiltz [mailto:dh...@wh...] > Sent: 07 February 2001 22:00 > To: per...@li... > Subject: [perl-win32-gui-users] GUI Builder 109 (was: Need Gui Builder) > > > > > > Did the GUI Builder written by David Hiltz ever find a download home? I > > need to re-install it and was wondering where I can find it. Thanks. > > Sorry that I didn't get something out earlier (I've been so busy). > Someday I would like to get the GUI Builder stuff out on sourceforge. For > now you can pick up my latest copy of GB (calling it Build 109) off our > anonymous ftp server: > > ftp://ftp.wh.whoi.edu/pub > > Look for 'gb109.zip'. > > There is a readme.txt inside the zip that should explain stuff. > > David Hiltz > > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > > _______________________________________________ > 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-02-09 12:33:31
|
Is there a way of dynamically checking a labels visibility? Well, dynamically would be the same as statically, so really how can you test a label to check whether it is showing. Something sort of like this: if ( $MainWin->Label_1->Visible ) { ... } else { ... } However, this code doesn't work because there is no method "Visible" for a label. But, you can set the -visible option of a label to 0. How do you find out whether it's 0 or 1? erick never stop questioning www.jeb.ca |
From: <Eoi...@de...> - 2001-02-09 10:53:02
|
Guys I can't get to this site . is there any other place I can Get it Rgds Eoin: EMF2 Test Engineering mailto:Eoi...@de... -----Original Message----- From: David Hiltz [mailto:dh...@wh...] Sent: 07 February 2001 22:00 To: per...@li... Subject: [perl-win32-gui-users] GUI Builder 109 (was: Need Gui Builder) > > Did the GUI Builder written by David Hiltz ever find a download home? I > need to re-install it and was wondering where I can find it. Thanks. Sorry that I didn't get something out earlier (I've been so busy). Someday I would like to get the GUI Builder stuff out on sourceforge. For now you can pick up my latest copy of GB (calling it Build 109) off our anonymous ftp server: ftp://ftp.wh.whoi.edu/pub Look for 'gb109.zip'. There is a readme.txt inside the zip that should explain stuff. David Hiltz _______________________________________________ Perl-Win32-GUI-Users mailing list Per...@li... http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
From: <pau...@or...> - 2001-02-09 09:40:52
|
Danny The ActiveState repository has an old build of Win32::GUI and if it is in your repository list before Aldo's site at dada.perl.it you'll probably get that version. Easiest bet is to download the .zip file of the 558 build from Source Forge and install it from that local copy. http://download.sourceforge.net/perl-win32-gui/Win32-GUI-0.0.558-PPM-5.6.zip Cheers Paul ******************************************************************************* Important. This E-mail is intended for the above named person and may be confidential and/or legally privileged. If this has come to you in error you must take no action based on it, nor must you copy or show it to anyone; please inform the sender immediately. ******************************************************************************* |
From: Danny Z. <da...@be...> - 2001-02-09 07:17:17
|
Dear David, no i meant.. the win32gui that install via the ppm is from the year 1998 . i'm almost 100% sure that this is due to an old repository somewhere.. 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 ------------------------------------------------------------------- Thursday, February 08, 2001, 11:43:49 PM, you wrote: >> i think the PPM version of win32 that is on dada.perl.it isn't really >> uptodate (.502 but you tell me it works for that version) >> >> But i think that my repository wasn't right configured... >> >> the win32gui is from 98 .. is that possible ? DH> GB-109 also works on Win98. DH> _______________________________________________ DH> Perl-Win32-GUI-Users mailing list DH> Per...@li... DH> http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
From: David H. <dh...@wh...> - 2001-02-08 22:43:35
|
> i think the PPM version of win32 that is on dada.perl.it isn't really > uptodate (.502 but you tell me it works for that version) > > But i think that my repository wasn't right configured... > > the win32gui is from 98 .. is that possible ? GB-109 also works on Win98. |
From: Danny Z. <da...@be...> - 2001-02-08 22:27:50
|
Dear David, i'll try this tomorrow at the office thanks for the tip i think the PPM version of win32 that is on dada.perl.it isn't really uptodate (.502 but you tell me it works for that version) But i think that my repository wasn't right configured... the win32gui is from 98 .. is that possible ? 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 ------------------------------------------------------------------- Thursday, February 08, 2001, 7:05:02 PM, you wrote: >> i just installed activeperl on a other machine .. >> >> installed (via the ppm!) the win32::gui & api.. >> >> downloaded the gp109.zip (without any probs) >> >> when i try to run gb.pl the screen comes up and falls back to the prompt.. >> >> this is the error i get returned >> D:\perlgui>perl gb >> --Inside: main::Read_Preferences, Called from line: 51 >> --Inside: main::Setup_Menu, Called from line: 53 >> --Inside: main::CWin_Resize, Called from line: 108 >> Your vendor has not defined Win32::GUI macro ToolBar, used at gb line 1502. at D >> :/Perl/site/lib/Win32/GUI.pm line 347. >> >> D:\perlgui> >> >> i'm running the same operating system as on my other computer (win2k) ? >> >> why does this error occures here ? >> DH> I'll guess you are running an earlier version of Win32::GUI. DH> I can run GB under Win2000 Professional with Win32::GUI Build 502. DH> David Hiltz DH> _______________________________________________ DH> Perl-Win32-GUI-Users mailing list DH> Per...@li... DH> http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
From: David H. <dh...@wh...> - 2001-02-08 18:04:46
|
> i just installed activeperl on a other machine .. > > installed (via the ppm!) the win32::gui & api.. > > downloaded the gp109.zip (without any probs) > > when i try to run gb.pl the screen comes up and falls back to the prompt.. > > this is the error i get returned > D:\perlgui>perl gb > --Inside: main::Read_Preferences, Called from line: 51 > --Inside: main::Setup_Menu, Called from line: 53 > --Inside: main::CWin_Resize, Called from line: 108 > Your vendor has not defined Win32::GUI macro ToolBar, used at gb line 1502. at D > :/Perl/site/lib/Win32/GUI.pm line 347. > > D:\perlgui> > > i'm running the same operating system as on my other computer (win2k) ? > > why does this error occures here ? > I'll guess you are running an earlier version of Win32::GUI. I can run GB under Win2000 Professional with Win32::GUI Build 502. David Hiltz |
From: <pau...@or...> - 2001-02-08 17:37:58
|
David Many thanks, most helpfull. Cheers Paul ******************************************************************************* Important. This E-mail is intended for the above named person and may be confidential and/or legally privileged. If this has come to you in error you must take no action based on it, nor must you copy or show it to anyone; please inform the sender immediately. ******************************************************************************* |
From: <pau...@or...> - 2001-02-08 17:18:58
|
Oops - posted this again as I inadvertently embedded a list command word in it and got a message saying it was being held by the moderators (sounds painful !) Sorry - please ignore. Paul ******************************************************************************* Important. This E-mail is intended for the above named person and may be confidential and/or legally privileged. If this has come to you in error you must take no action based on it, nor must you copy or show it to anyone; please inform the sender immediately. ******************************************************************************* |
From: <pau...@or...> - 2001-02-08 17:18:57
|
Has anyone managed to download it ? I can see the file but not download it - it says that the file cannot be found. Thanks Paul ******************************************************************************* Important. This E-mail is intended for the above named person and may be confidential and/or legally privileged. If this has come to you in error you must take no action based on it, nor must you copy or show it to anyone; please inform the sender immediately. ******************************************************************************* |
From: <da...@be...> - 2001-02-08 17:07:19
|
strange things happens .. i just installed activeperl on a other machine .. installed (via the ppm!) the win32::gui & api.. downloaded the gp109.zip (without any probs) when i try to run gb.pl the screen comes up and falls back to the prompt.. this is the error i get returned D:\perlgui>perl gb --Inside: main::Read_Preferences, Called from line: 51 --Inside: main::Setup_Menu, Called from line: 53 --Inside: main::CWin_Resize, Called from line: 108 Your vendor has not defined Win32::GUI macro ToolBar, used at gb line 1502. at D :/Perl/site/lib/Win32/GUI.pm line 347. D:\perlgui> i'm running the same operating system as on my other computer (win2k) ? why does this error occures here ? thanks Danny Zak euro-pictures/BelGOnet.com |
From: David H. <dh...@wh...> - 2001-02-08 16:22:31
|
> Has anyone managed to download it ? I can see the file but not download it - it > says that the file cannot be found. I just emailed you a copy of the zip file. David Hiltz |
From: Moore, L. <Lar...@tf...> - 2001-02-08 16:13:55
|
Simple, Beautiful, Thanks! -----Original Message----- From: Aldo Calpini [mailto:da...@pe...] Sent: Thursday, February 08, 2001 10:51 AM To: Moore, Larry Subject: Re: [perl-win32-gui-users] Textfield method Moore, Larry wrote: > I would like to assign the highlighted portion of a textfield to > $var. I have the Textfield created with stuff in it but I don't > see a method which will let me make the assignment. there is a Selection method that returns the start and end of the selection. then you just make a substr on the Textfield content: ($from, $to) = $Textfield->Selection(); $var = substr($Textfield->Text, $from, $to-$from); 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: Aldo C. <da...@pe...> - 2001-02-08 15:46:25
|
Moore, Larry wrote: > I would like to assign the highlighted portion of a textfield to > $var. I have the Textfield created with stuff in it but I don't > see a method which will let me make the assignment. there is a Selection method that returns the start and end of the selection. then you just make a substr on the Textfield content: ($from, $to) = $Textfield->Selection(); $var = substr($Textfield->Text, $from, $to-$from); cheers, Aldo __END__ $_=q,just perl,,s, , another ,,s,$, hacker,,print; |
From: Bob S. <bs...@Pr...> - 2001-02-08 15:43:41
|
pau...@or... wrote: > Has anyone managed to download it ? I can see the file but not download it - it > says that the file cannot be found. > > Help > > Cheers > > Paul > I got it this morning with no problems. Bob |
From: Moore, L. <Lar...@tf...> - 2001-02-08 15:34:14
|
I would like to assign the highlighted portion of a textfield to $var. I have the Textfield created with stuff in it but I don't see a method which will let me make the assignment. Larry |
From: <pau...@or...> - 2001-02-08 15:32:09
|
Has anyone managed to download it ? I can see the file but not download it - it says that the file cannot be found. Help Cheers Paul ******************************************************************************* Important. This E-mail is intended for the above named person and may be confidential and/or legally privileged. If this has come to you in error you must take no action based on it, nor must you copy or show it to anyone; please inform the sender immediately. ******************************************************************************* |
From: Aldo C. <da...@pe...> - 2001-02-08 11:04:38
|
gary gauthier wrote: > I've built the 558 version of Win32-GUI for ActiveState v522, > but get a Run-time Exception when I try to run anything. I've > seen this before, but can't remmber why it happens. Has anyone > any ideas? > The 502 version of Win32-GUI builds and runs programs just fine > on the same machine/configuration. I've introduced some bugs in build 558 expecially for the PERL_OBJECT build :-) please grab the latest GUI.xs from CVS and try building it with this file: (note that the URL is on one line) http://cvs.sourceforge.net/cgi-bin/cvsweb.cgi/Win32-GUI/GUI.xs?cvsroot=perl-win32-gui cheers, Aldo __END__ $_=q,just perl,,s, , another ,,s,$, hacker,,print; |
From: gary g. <gga...@hu...> - 2001-02-08 10:46:32
|
I've built the 558 version of Win32-GUI for ActiveState v522, but get a = Run-time Exception when I try to run anything. I've seen this before, = but can't remmber why it happens. Has anyone any ideas? The 502 version = of Win32-GUI builds and runs programs just fine on the same = machine/configuration. Regards; Gary Gauthier |
From: <pau...@or...> - 2001-02-08 09:20:24
|
Hi Danny I use PPM through our proxy / firewall. There are instructions in the PPM FAQ but basically you set environment variables in the shell before calling PPM. There are 3 to set : HTTP_proxy=http://your.proxy.server:portnumber HTTP_proxy_user=username (if required) HTTP_proxy_pass=password (if required) Depending on your firewall / proxy you may or may not have to set the latter 2. (Make sure you remember to supply the http:// on the front of the proxy address!) Hope this helps ! Paul ******************************************************************************* Important. This E-mail is intended for the above named person and may be confidential and/or legally privileged. If this has come to you in error you must take no action based on it, nor must you copy or show it to anyone; please inform the sender immediately. ******************************************************************************* |
From: David H. <dh...@wh...> - 2001-02-08 00:13:59
|
There is an easier way. Go out to ActiveState site and download the ZIP for Win32::API, unzip then run: ppm install Win32-API.ppd > but .. i can't get any of these compiled on my machine.. > > errors like these > > C:\gb\api\Win32-API-0.20>nmake > > Microsoft (R) Program Maintenance Utility Version 1.50 > Copyright (c) Microsoft Corp 1988-94. All rights reserved. > > cl.exe -c -O1 -MD -DNDEBUG -DWIN32 -D_CONSOLE -DNO_STRICT -DHAVE_DES_FC > RYPT -DPERL_IMPLICIT_CONTEXT -DPERL_IMPLICIT_SYS -DPERL_MSVCRT_READFIX -O1 -MD - > DNDEBUG -DVERSION=\"0.20\" -DXS_VERSION=\"0.20\" -IE:\Perl\lib\CORE API. > c > Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 11.00.7022 for 80x86 > Copyright (C) Microsoft Corp 1984-1997. All rights reserved. > > API.c > Command line error D2027 : cannot execute 'c1' > NMAKE : fatal error U1077: 'C:\WIN2K\system32\cmd.exe' : return code '0x2' > Stop. |