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: Glenn L. <Gle...@ne...> - 2001-06-07 07:10:33
|
Thanks, Harald. Once again, you've busted me out of the mental box I was in. Your program so clearly works, one would wonder why mine doesn't. The difference is in the fact that I'm calling BringWindowToTop from a Notify icon click (which was clear from the sample code I provided), and you are not. Why this should be different is apparently due to the choice of the Windows designers in implementing the System Tray icon business. Clicking on a window, or a sub-item in a window, as is done to reach the Belly button in your code, "activates" your Main window, and gives it the keyboard focus. Then, with the application already being activated, the BringWindowToTop function is sufficient to raise the other window from whatever depths it is in! Clicking on a System Tray icon apparently doesn't activate the application windows, just passes the click message in to the app. So then, if the result of the click is that the application wants to come to the foreground, it has to activate itself! Seems Win32::GUI doesn't provide that capability: it documents GetFocus and GetActiveWindow, but doesn't document SetFocus or SetActiveWindow! Poking around in gui.xs reveals that it has a SetFocus, but not a SetActiveWindow. So I made a SetActiveWindow out of Win32::API. However, it still doesn't do the trick. Now, even though I SetFocus, SetActiveWindow, BringWindowToTop, and Show the window, it still doesn't come to the front when I click the Notify Icon. This is on NT 4 sp 6, by the way. "Piske, Harald" wrote: > Works with me ... I have two windows, one button in the first window brings > the other to top. Complete code snippet attached for you to check if it > works with you and figure out the differences to yours. Oh, and I only > checked on Win2k. > > Have fun, > Harald > > > -----Original Message----- > > From: Glenn Linderman [mailto:Gle...@ne...] > > Sent: Mittwoch, 6. Juni 2001 18:25 > > To: Win32::GUI > > Subject: [perl-win32-gui-users] BringWindowToTop doesn't > > > > > > Hi, > > > > So I've got this code, and it doesn't bring the window to the top. I > > can see that each time I click on the notify icon that the code gets > > executed, both because the print statement fires, and the window > > redraws. But the window stays behind other windows, in spite of the > > BringWindowToTop call. It does that with or without the Hide/Show > > sequence, and with or with a Disable/Enable sequence wrapped > > around the > > BringWindowToTop. ActivePerl 5.6.1 build 626, Win32::GUI > > 0.0.558. What > > trick am I missing? > > > > I'm quite willing to throw all this away, and use whatever > > works... this > > is just what sounded like should work from the documentation. > > > > I should note that $mw is using the "parent window" trick to > > avoid being > > on the task bar. I further note that sufficient Alt-Tab keystrokes do > > eventually raise the window to the top. > > > > sub notify_icon_Click > > { if ( $mw -> IsVisible ()) > > { print "Bring Main to Top\n"; > > $mw -> Hide (); > > $mw -> BringWindowToTop (); > > $mw -> Show (); > > } > > } > > > > -- > > Glenn > > ===== > > Due to the current economic situation, the light at the > > end of the tunnel will be turned off until further notice. > > > > > > > > _______________________________________________ > > Perl-Win32-GUI-Users mailing list > > Per...@li... > > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > > > > ------------------------------------------------------------------------ > > X.PLName: X.PL > Type: Perl Program (application/x-perl) -- Glenn ===== Due to the current economic situation, the light at the end of the tunnel will be turned off until further notice. |
From: Chris E. <ce...@mi...> - 2001-06-07 05:15:35
|
Hey, Is there anything special I should know about making a Menu visible? I tried this on just a blank window, but no menu is visible. $Menu = new Win32::GUI::Menu( "&File" => "File", ">Open" => "Open", ">Save" => "Save", ">Exit" => "Exit" ); I tried $Menu-Show(); Putting it in a DialogBox instead of a Window... I don't understand how to make it visible. Thanks for the help. Chris |
From: Piske, H. <Har...@bo...> - 2001-06-07 02:12:57
|
Works with me ... I have two windows, one button in the first window brings the other to top. Complete code snippet attached for you to check if it works with you and figure out the differences to yours. Oh, and I only checked on Win2k. Have fun, Harald > -----Original Message----- > From: Glenn Linderman [mailto:Gle...@ne...] > Sent: Mittwoch, 6. Juni 2001 18:25 > To: Win32::GUI > Subject: [perl-win32-gui-users] BringWindowToTop doesn't > > > Hi, > > So I've got this code, and it doesn't bring the window to the top. I > can see that each time I click on the notify icon that the code gets > executed, both because the print statement fires, and the window > redraws. But the window stays behind other windows, in spite of the > BringWindowToTop call. It does that with or without the Hide/Show > sequence, and with or with a Disable/Enable sequence wrapped > around the > BringWindowToTop. ActivePerl 5.6.1 build 626, Win32::GUI > 0.0.558. What > trick am I missing? > > I'm quite willing to throw all this away, and use whatever > works... this > is just what sounded like should work from the documentation. > > I should note that $mw is using the "parent window" trick to > avoid being > on the task bar. I further note that sufficient Alt-Tab keystrokes do > eventually raise the window to the top. > > sub notify_icon_Click > { if ( $mw -> IsVisible ()) > { print "Bring Main to Top\n"; > $mw -> Hide (); > $mw -> BringWindowToTop (); > $mw -> Show (); > } > } > > -- > Glenn > ===== > Due to the current economic situation, the light at the > end of the tunnel will be turned off until further notice. > > > > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > |
From: Erick B. <er...@je...> - 2001-06-07 01:54:11
|
You can find the FAQ here: http://www.jeb.ca/faq/Win32-GUI-FAQ.html regards, erick bourgeois never stop questionning www.jeb.ca ----- Original Message ----- From: Kevin Keegan <ke...@kr...> To: <per...@li...> Sent: Wednesday, June 06, 2001 6:55 PM Subject: [perl-win32-gui-users] FAQ | I heard something about a FAQ, where can I see this page or contribute to it? I just started using Win32::GUI and libwww-perl and I am having so much fun. This is so simple to create small windows programs. I would like to contribute some of my solutions to simple problems that I encountered. | Thanks | Kevin | krkeegan.com | . | | _______________________________________________ | Perl-Win32-GUI-Users mailing list | Per...@li... | http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users | |
From: Glenn L. <Gle...@ne...> - 2001-06-07 01:22:01
|
Hi, So I've got this code, and it doesn't bring the window to the top. I can see that each time I click on the notify icon that the code gets executed, both because the print statement fires, and the window redraws. But the window stays behind other windows, in spite of the BringWindowToTop call. It does that with or without the Hide/Show sequence, and with or with a Disable/Enable sequence wrapped around the BringWindowToTop. ActivePerl 5.6.1 build 626, Win32::GUI 0.0.558. What trick am I missing? I'm quite willing to throw all this away, and use whatever works... this is just what sounded like should work from the documentation. I should note that $mw is using the "parent window" trick to avoid being on the task bar. I further note that sufficient Alt-Tab keystrokes do eventually raise the window to the top. sub notify_icon_Click { if ( $mw -> IsVisible ()) { print "Bring Main to Top\n"; $mw -> Hide (); $mw -> BringWindowToTop (); $mw -> Show (); } } -- Glenn ===== Due to the current economic situation, the light at the end of the tunnel will be turned off until further notice. |
From: Kevin K. <ke...@kr...> - 2001-06-07 00:58:38
|
I heard something about a FAQ, where can I see this page or contribute to it? I just started using Win32::GUI and libwww-perl and I am having so much fun. This is so simple to create small windows programs. I would like to contribute some of my solutions to simple problems that I encountered. Thanks Kevin krkeegan.com . |
From: Johan L. <jp...@bo...> - 2001-06-06 13:27:36
|
Daryll wrote: >Does anyone know if there is a property to have some text Flash on a >DialogBox? I'd go with a timer and Show() and Hide() a label. >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. Ok. /J -- Johan Lindström, Sourcerer, Boss Casinos Ltd, Antigua jp...@bo... |
From: <dar...@la...> - 2001-06-06 12:57:23
|
Does anyone know if there is a property to have some text Flash on a DialogBox? Thanks 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. |
From: Forhan, M. <Mic...@tr...> - 2001-06-05 19:59:40
|
Correct me if I'm wrong, but if you are using Perl 5.005 , then Win32::GUI version 502 (the latest version for perl 5.005) is the version that you will receive on a PPM install, because 558 is for Perl 5.6. I'm a little confused on this myself, because I've seen a couple of statements regarding the versions, but from I can tell, this is the case. Hope this helps (and if i'm wrong, feel free to correct me ;) ) -Michael Forhan -----Original Message----- From: Peter Eisengrein [mailto:Pet...@at...] Sent: Monday, June 04, 2001 6:17 AM To: 'per...@li...' Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? I see the 0.0.558 tar.gz version on your site but your /ppm still says 502, which is where I got it from. Is that accurate? > -----Original Message----- > From: Aldo Calpini [mailto:da...@pe...] > Sent: Monday, June 04, 2001 4:56 AM > To: Peter Eisengrein > Subject: Re: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > > > Peter Eisengrein wrote: > > 0.0.502 -- I actually just pulled it off your site maybe > two weeks ago. > > Is there an even newer version? Thanks for your help -- I love this > > module! > > uhm... my site contains version 0.0.558, it was uploaded on > 22 Jan 2001. > you probably have a (way too much) caching proxy :-) > > > 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 > _______________________________________________ Perl-Win32-GUI-Users mailing list Per...@li... http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users |
From: Frazier, J. J. <Joe...@Pe...> - 2001-06-05 19:32:11
|
> -----Original Message----- > From: Peter Eisengrein [mailto:Pet...@at...] > Sent: Tuesday, June 05, 2001 13:57 > To: 'per...@li...' > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >=20 >=20 > The zip thing worked!!! That's terrific except that scripts=20 > that used to > work no longer do. Bummer. I get this kind of an error: >=20 > "Your vendor has not defined Win32::GUI macro Category, used=20 > at..." (see > below snippet) >=20 > What's this about a macro? I get what it means but can=20 > someone point me > towards which doc describes this change in functionality? In=20 > 0.0.558 do I > need to declare these "macros" or something? Here's a snippet=20 > of what it is > complaining about (works with 0.0.502): >=20 > ###### Not sure, but try changing: > $Window->AddCombobox(=20 > -name =3D> Category, > -left =3D> 105,=20 > -top =3D> 5, > -width =3D> 45,=20 > -height =3D> 100, > -style =3D> WS_VISIBLE | 2 | WS_VSCROLL | WS_HSCROLL | > ES_AUTOHSCROLL, > -tabstop =3D> 1, > ); to=20 $Window->AddCombobox(=20 -name =3D> "Category", -left =3D> 105,=20 -top =3D> 5, -width =3D> 45,=20 -height =3D> 100, -style =3D> WS_VISIBLE | 2 | WS_VSCROLL | WS_HSCROLL |ES_AUTOHSCROLL, -tabstop =3D> 1, I have not worked with this module long enough, but that kind of sticks out in my mind as being a bareword. =20 >=20 > $Window->Category->InsertItem(""); > foreach (@category) > { > chomp($_); > $Window->Category->InsertItem("$_"); > } >=20 > ##### >=20 >=20 > THanks for everyone's help. > Pete >=20 >=20 >=20 > > -----Original Message----- > > From: Frazier, Joe Jr [mailto:Joe...@Pe...] > > > >=20 > > http://www.activestate.com/PPMPackages/zips/6xx-builds-only/wi > > n32-gui.zi > > p. THIS contains the ppd file for install. =20 > > 1) unzip > > 2) cd to foldery where you unziped files > > 3) type "ppm install Win32-GUI.ppd" > >=20 > >=20 >=20 > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users >=20 |
From: Piske, H. <Har...@bo...> - 2001-06-05 19:10:56
|
Guys - or GUIs ;-) Xqs me for being square, but if we discuss everything under "Timer memory leak", we are giving ourselves a hard time down the road when we try to find a solution in the sourceforge archive. Especially since the search function of the archive is not exactly very successful in retrieving what you're looking for :-( Anyway, Peter, I'm sorry to inform you that my Perl 5.6.0 with GUI 0558 does not complain about an undefined macro. I remember seing that error when I had the famous GUI version 0.99, which was actually something like 0.0.0460 or so. But I do hope you're over the version issue by now ;-) I could imagine something wrong with the $Window to begin with. If the $Window->AddCombobox call fails, it returns undef and a subsequent $Window->Category would have to fail. However, since I can use your code snippet ... do you have Category defined somewhere? Because you did not put the name in quotes, maybe Perl tries to call a sub of that name and take it's return value as name for your Combobox? Just guessing. Have fun, Harald | -----Original Message----- | From: Peter Eisengrein [mailto:Pet...@at...] | Sent: Tuesday, June 05, 2001 10:57 | To: 'per...@li...' | Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? | | | The zip thing worked!!! That's terrific except that scripts | that used to | work no longer do. Bummer. I get this kind of an error: | | "Your vendor has not defined Win32::GUI macro Category, used | at..." (see | below snippet) | | What's this about a macro? I get what it means but can | someone point me | towards which doc describes this change in functionality? In | 0.0.558 do I | need to declare these "macros" or something? Here's a snippet | of what it is | complaining about (works with 0.0.502): | | ###### | $Window->AddCombobox( | -name => Category, | -left => 105, | -top => 5, | -width => 45, | -height => 100, | -style => WS_VISIBLE | 2 | WS_VSCROLL | WS_HSCROLL | | ES_AUTOHSCROLL, | -tabstop => 1, | ); | | $Window->Category->InsertItem(""); | foreach (@category) | { | chomp($_); | $Window->Category->InsertItem("$_"); | } | | ##### | | | THanks for everyone's help. | Pete | | | | > -----Original Message----- | > From: Frazier, Joe Jr [mailto:Joe...@Pe...] | > | > | > http://www.activestate.com/PPMPackages/zips/6xx-builds-only/wi | > n32-gui.zi | > p. THIS contains the ppd file for install. | > 1) unzip | > 2) cd to foldery where you unziped files | > 3) type "ppm install Win32-GUI.ppd" | > | > | | _______________________________________________ | Perl-Win32-GUI-Users mailing list | Per...@li... | http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users | |
From: Peter E. <Pet...@at...> - 2001-06-05 17:57:07
|
The zip thing worked!!! That's terrific except that scripts that used to work no longer do. Bummer. I get this kind of an error: "Your vendor has not defined Win32::GUI macro Category, used at..." (see below snippet) What's this about a macro? I get what it means but can someone point me towards which doc describes this change in functionality? In 0.0.558 do I need to declare these "macros" or something? Here's a snippet of what it is complaining about (works with 0.0.502): ###### $Window->AddCombobox( -name => Category, -left => 105, -top => 5, -width => 45, -height => 100, -style => WS_VISIBLE | 2 | WS_VSCROLL | WS_HSCROLL | ES_AUTOHSCROLL, -tabstop => 1, ); $Window->Category->InsertItem(""); foreach (@category) { chomp($_); $Window->Category->InsertItem("$_"); } ##### THanks for everyone's help. Pete > -----Original Message----- > From: Frazier, Joe Jr [mailto:Joe...@Pe...] > > > http://www.activestate.com/PPMPackages/zips/6xx-builds-only/wi > n32-gui.zi > p. THIS contains the ppd file for install. > 1) unzip > 2) cd to foldery where you unziped files > 3) type "ppm install Win32-GUI.ppd" > > |
From: <pau...@or...> - 2001-06-05 15:36:10
|
Hi The Win32::GUI 0.558 PPD was created by me (I'm the Packager you know ;-) ). I also managed to get ActiveState to update their PPM server with it so you can get the current version from there. (It does seem to work from inside a firewall, you just need to set the environment variables right.) There's some good information about creating PPMs on Jenda's site at http://jenda.krynicky.cz/perl/PPM.html (Thanks again Aldo!) They are fairly easy to do, basically you need a couple of things : 1) Source of module 2) Compiler to build the module Build the source like this : perl Makefile.pl nmake ppd Move the blib directory structure produced by this to a directory like MSWin32-x86-multi-thread\ and then tar up the whole thing and call it something sensible like Module-SubModule-versionnumber-PPM.tar. (Win32-GUI-0.0.558-PM.tar for example) Now gzip the tar file. (Try http://www.gzip.org/ for gzip for Windows) Now you must create a .ppd file which describes it. Jenda's site has detailed information but check the .ppd file which is bundled with my 0.558 PPM it's pretty simple. Major thing to remember is the use of unix style slashes for directory paths, ie somepath/somotherpath NOT somepath\someotherpath. Caught me out for a while ! Once you have the gzipped tar file and the ppd file, create a zip file called Module-SubModule-versionnumber-PPM.zip containing the ppd and the gzipped file. OK, it should now work. It took me some time playing about to get it going at first but once you've done one it gets easier. BTW - The reason that there are no docs in the PPM file for 0.558 is because at the time the docs were very incomplete. I could create a PPM with the docs included, but isn't someone on this list maintaining them on a web site somewhere ? Anyway, if you're *REALLY* stuck for a CPAN or other module making into a PPM drop me a line at pb...@nt... and I'll offer any help I can. (I'd rather help you do it than do it for you of course ! ;-) ) 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: Frazier, J. J. <Joe...@Pe...> - 2001-06-05 15:20:27
|
That file is the source code and would have to be installed using the following steps: cd to the folder you unziped to: perl makefile.pl nmake nmake test nmake install This assumes you have nmake. If not, you can get it from MS ftp. I dont know exactly where it is now, but you could go to MS site and perform a search. OR... http://www.activestate.com/PPMPackages/zips/6xx-builds-only/win32-gui.zi p. THIS contains the ppd file for install. =20 1) unzip 2) cd to foldery where you unziped files 3) type "ppm install Win32-GUI.ppd" Can you not install any packages via ppm? If you can, as I said earlier, you can just install directly from AS repository by typeing "ppm install Win32-GUI" and it will download from AS and install. If you CANNOT ppm from AS ( and I doubt it unless you have the wrong installation path in your ppm config) then take off the file name from the URL above and you will see ALL the 6xx build packages available for local ppm install. > -----Original Message----- > From: Peter Eisengrein [mailto:Pet...@at...] > Sent: Tuesday, June 05, 2001 10:25 > To: 'per...@li...' > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >=20 >=20 > Joe, thanks for all your help but, man I'm getting nowhere fast! I > downloaded the Win-GUI-0.0.558.tar.gz, extracted it and tried=20 > doing the > install as you described and again no deal (no ppd in the=20 > archive). Then I > tried doing another install from AS and I'm still on 0.0.502. >=20 >=20 > C:\ActivePerl\lib\gui\Win32-GUI-0.0.558>perl -v >=20 > This is perl, v5.6.0 built for MSWin32-x86-multi-thread >=20 >=20 >=20 > C:\ActivePerl\lib\gui\Win32-GUI-0.0.558>ppm install Win32-GUI.ppd > Retrieving package 'Win32-GUI.ppd'... > Error installing package 'Win32-GUI.ppd': Could not locate a=20 > PPD file for > package Win32-GUI.ppd >=20 >=20 >=20 > C:\ActivePerl\lib\gui\Win32-GUI-0.0.558>ppm install Win32::GUI > Retrieving package 'Win32-GUI'... > Writing C:\ActivePerl\site\lib\auto\Win32\GUI\.packlist >=20 > C:\ActivePerl\lib\gui\Win32-GUI-0.0.558>ppm > PPM interactive shell (2.0) - type 'help' for available commands. > PPM> query > Archive-Tar [0.072 ] module for manipulation of tar archives. > Compress-Zlib [1.03 ] Interface to zlib compression library > HTML-Parser [2.23 ] SGML parser class > MIME-Base64 [2.11 ] Encoding and decoding of base64 strings > Net-Telnet [3.02 ] Interact with TELNET port or other TCP ports > PPM [2 ] Perl Package Manager: locate, install, upgrade > software > packages. > Tk [800.022] Tk - a Graphical User Interface Toolkit > URI [1.04 ] Uniform Resource Identifiers=20 > (absolute and relative) > Win32-API [0.01 ] Implementation of arbitrary Win32 APIs. > Win32-GUI [0.0.502] Perl-Win32 Graphical User Interface Extension > XML-Element [1.07 ] Base element class for XML elements > XML-Parser [2.27 ] A Perl module for parsing XML documents > libwin32 [0.16 ] A collection of extensions that aims=20 > to provide > comprehensive access to the Windows API. > libwww-perl [5.45 ] Library for WWW access in Perl > >=20 >=20 > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users >=20 |
From: Marjolein K. <win...@ja...> - 2001-06-05 15:01:42
|
Joe, Thanks I found it! For anyone interested, it's at http://jenda.krynicky.cz/perl/PPM.html At 10:29 2001-06-05 -0400, Frazier, Joe Jr wrote: >http://Jenda.Krynicky.cz used to have information on this. Not sure if >it still does. > >> -----Original Message----- >> From: Marjolein Katsma [mailto:win...@ja...] >> Sent: Tuesday, June 05, 2001 10:15 >> To: per...@li... >> Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >> >> >> Ah, yes, now that you mention it - I found the same thing. So >> I just downloaded the zip file, unzipped in a directory I use >> for modules that cannot be installed automatically, and then >> manually copied some things to the real Perl tree. I still >> use the the unzipped package for documentation. >> >> I'd be interested to know how to create a PPD file, though. >> What should be in it? Anyone? >> >> Cheers, >> Cheers, Marjolein Katsma HomeSite Help - http://hshelp.com/ - Extensions, Tips and Tools |
From: Frazier, J. J. <Joe...@Pe...> - 2001-06-05 14:29:56
|
http://Jenda.Krynicky.cz used to have information on this. Not sure if it still does. =20 > -----Original Message----- > From: Marjolein Katsma [mailto:win...@ja...] > Sent: Tuesday, June 05, 2001 10:15 > To: per...@li... > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >=20 >=20 > Ah, yes, now that you mention it - I found the same thing. So=20 > I just downloaded the zip file, unzipped in a directory I use=20 > for modules that cannot be installed automatically, and then=20 > manually copied some things to the real Perl tree. I still=20 > use the the unzipped package for documentation. >=20 > I'd be interested to know how to create a PPD file, though.=20 > What should be in it? Anyone? >=20 > Cheers, >=20 > At 09:15 2001-06-05 -0400, Peter Eisengrein wrote: > >I've tried to install via ppm from the zip file but always=20 > get "Could not > >locate a PPD" error. Can someone send the syntax on how to do this? I > >assumed it would be=20 > > > >ppm install --location=3D"filepath\filename" Win32-GUI > > > >Apparently not. THanks for your help. > > > >> -----Original Message----- > >> From: Frazier, Joe Jr [mailto:Joe...@Pe...] > >> Sent: Monday, June 04, 2001 10:53 AM > >> To: per...@li... > >> Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > >>=20 > >>=20 > >> Perl 5.6 has the latest version on Activestates PPM.=20 > >>=20 > >> C:\>perl -v > >>=20 > >> This is perl, v5.6.1 built for MSWin32-x86-multi-thread > >> (with 1 registered patch, see perl -V for more detail) > >>=20 > >> Copyright 1987-2001, Larry Wall > >>=20 > >> Binary build 626 provided by ActiveState Tool Corp. > >> http://www.ActiveState.com > >> Built 01:31:15 May 2 2001 > >>=20 > >>=20 > >> Perl may be copied only under the terms of either the=20 > Artistic License > >> or the > >> GNU General Public License, which may be found in the Perl 5=20 > >> source kit. > >>=20 > >> Complete documentation for Perl, including FAQ lists, should=20 > >> be found on > >> this system using `man perl' or `perldoc perl'. If you=20 > have access to > >> the > >> Internet, point your browser at http://www.perl.com/, the Perl Home > >> Page. > >>=20 > >>=20 > >> C:\>ppm search Win32-GUI > >> Packages available from > >> http://ppm.ActiveState.com/cgibin/PPM/ppmserver.pl?urn:/PPMServer: > >> Win32-GUI [0.0.558] Win32 Graphical User Interface Extension > >> Win32-GuiTest [0.9 ] Perl GUI Test Utilities > >>=20 > >> I didnt install from there since I already had downloaded=20 > the zip file > >> and installed before I found out it was on the AS server=20 > repository, > >> but, one source is as good as another right? Also, you=20 > could download > >> the zip and install via ppm from the zip file contents=20 > localy. I used > >> to have to do this at my old job since I could never get=20 > ppm to work > >> through the firewall there.... > >>=20 > >>=20 > >>=20 > >> > -----Original Message----- > >> > From: Peter Eisengrein [mailto:Pet...@at...] > >> > Sent: Monday, June 04, 2001 09:23 > >> > To: 'per...@li...' > >> > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer=20 > memory leak? > >> >=20 > >> >=20 > >> > Tried again, got 502. see below... > >> >=20 > >> > C:\ActivePerl\lib\gui>ppm install=20 > --location=3Dhttp://dada.perl.it/PPM > >> > Win32-GUI > >> > Retrieving package 'Win32-GUI'... > >> > Writing C:\ActivePerl\site\lib\auto\Win32\GUI\.packlist > >> >=20 > >> > C:\ActivePerl\lib\gui>ppm > >> > PPM interactive shell (2.0) - type 'help' for available commands. > >> > PPM> query > >> > Archive-Tar [0.072 ] module for manipulation of tar archives. > >> > Compress-Zlib [1.03 ] Interface to zlib compression library > >> > HTML-Parser [2.23 ] SGML parser class > >> > MIME-Base64 [2.11 ] Encoding and decoding of base64 strings > >> > Net-Telnet [3.02 ] Interact with TELNET port or=20 > other TCP ports > >> > PPM [2 ] Perl Package Manager: locate,=20 > >> install, upgrade > >> > software > >> > packages. > >> > Tk [800.022] Tk - a Graphical User Interface Toolkit > >> > URI [1.04 ] Uniform Resource Identifiers=20 > >> > (absolute and relative) > >> > Win32-API [0.01 ] Implementation of arbitrary Win32 APIs. > >> > Win32-GUI [0.0.502] Perl-Win32 Graphical User Interface=20 > >> Extension > >> > XML-Element [1.07 ] Base element class for XML elements > >> > XML-Parser [2.27 ] A Perl module for parsing XML documents > >> > libwin32 [0.16 ] A collection of extensions that aims=20 > >> > to provide > >> > comprehensive access to the Windows API. > >> > libwww-perl [5.45 ] Library for WWW access in Perl > >> > PPM> > >> >=20 > >> >=20 > >> > > -----Original Message----- > >> > > From: Peter Eisengrein=20 > >> > > Sent: Monday, June 04, 2001 9:17 AM > >> > > To: 'per...@li...' > >> > > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer=20 > memory leak? > >> > >=20 > >> > >=20 > >> > > I see the 0.0.558 tar.gz version on your site but your /ppm=20 > >> > > still says 502, which is where I got it from. Is that accurate? > >> > >=20 > >> > > > -----Original Message----- > >> > > > From: Aldo Calpini [mailto:da...@pe...] > >> > > > Sent: Monday, June 04, 2001 4:56 AM > >> > > > To: Peter Eisengrein > >> > > > Subject: Re: [perl-win32-gui-users] Win32::GUI::Timer=20 > >> memory leak? > >> > > >=20 > >> > > >=20 > >> > > > Peter Eisengrein wrote: > >> > > > > 0.0.502 -- I actually just pulled it off your site maybe=20 > >> > > > two weeks ago. > >> > > > > Is there an even newer version? Thanks for your help -- I=20 > >> > > love this > >> > > > > module! > >> > > >=20 > >> > > > uhm... my site contains version 0.0.558, it was uploaded on=20 > >> > > > 22 Jan 2001. > >> > > > you probably have a (way too much) caching proxy :-) > >> > > >=20 > >> > > >=20 > >> > > > cheers, > >> > > > Aldo > >> > > >=20 > >> > > > __END__ > >> > > > $_=3Dq,just perl,,s, , another ,,s,$, hacker,,print; > >> > > >=20 > >> > > >=20 > >> > > >=20 > >> > > > _______________________________________________ > >> > > > Perl-Win32-GUI-Users mailing list > >> > > > Per...@li... > >> > > >=20 > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > >> > > >=20 > >> > >=20 > >> >=20 > >> > _______________________________________________ > >> > Perl-Win32-GUI-Users mailing list > >> > Per...@li... > >> > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > >> >=20 > >>=20 > >> _______________________________________________ > >> Perl-Win32-GUI-Users mailing list > >> Per...@li... > >> http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > >>=20 > > > >_______________________________________________ > >Perl-Win32-GUI-Users mailing list > >Per...@li... > >http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users >=20 >=20 > Cheers, >=20 > Marjolein Katsma > HomeSite Help - http://hshelp.com/ - Extensions, Tips and Tools >=20 >=20 > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users >=20 |
From: Peter E. <Pet...@at...> - 2001-06-05 14:24:50
|
Joe, thanks for all your help but, man I'm getting nowhere fast! I downloaded the Win-GUI-0.0.558.tar.gz, extracted it and tried doing the install as you described and again no deal (no ppd in the archive). Then I tried doing another install from AS and I'm still on 0.0.502. C:\ActivePerl\lib\gui\Win32-GUI-0.0.558>perl -v This is perl, v5.6.0 built for MSWin32-x86-multi-thread C:\ActivePerl\lib\gui\Win32-GUI-0.0.558>ppm install Win32-GUI.ppd Retrieving package 'Win32-GUI.ppd'... Error installing package 'Win32-GUI.ppd': Could not locate a PPD file for package Win32-GUI.ppd C:\ActivePerl\lib\gui\Win32-GUI-0.0.558>ppm install Win32::GUI Retrieving package 'Win32-GUI'... Writing C:\ActivePerl\site\lib\auto\Win32\GUI\.packlist C:\ActivePerl\lib\gui\Win32-GUI-0.0.558>ppm PPM interactive shell (2.0) - type 'help' for available commands. PPM> query Archive-Tar [0.072 ] module for manipulation of tar archives. Compress-Zlib [1.03 ] Interface to zlib compression library HTML-Parser [2.23 ] SGML parser class MIME-Base64 [2.11 ] Encoding and decoding of base64 strings Net-Telnet [3.02 ] Interact with TELNET port or other TCP ports PPM [2 ] Perl Package Manager: locate, install, upgrade software packages. Tk [800.022] Tk - a Graphical User Interface Toolkit URI [1.04 ] Uniform Resource Identifiers (absolute and relative) Win32-API [0.01 ] Implementation of arbitrary Win32 APIs. Win32-GUI [0.0.502] Perl-Win32 Graphical User Interface Extension XML-Element [1.07 ] Base element class for XML elements XML-Parser [2.27 ] A Perl module for parsing XML documents libwin32 [0.16 ] A collection of extensions that aims to provide comprehensive access to the Windows API. libwww-perl [5.45 ] Library for WWW access in Perl > |
From: Marjolein K. <win...@ja...> - 2001-06-05 14:15:17
|
Ah, yes, now that you mention it - I found the same thing. So I just downloaded the zip file, unzipped in a directory I use for modules that cannot be installed automatically, and then manually copied some things to the real Perl tree. I still use the the unzipped package for documentation. I'd be interested to know how to create a PPD file, though. What should be in it? Anyone? Cheers, At 09:15 2001-06-05 -0400, Peter Eisengrein wrote: >I've tried to install via ppm from the zip file but always get "Could not >locate a PPD" error. Can someone send the syntax on how to do this? I >assumed it would be > >ppm install --location="filepath\filename" Win32-GUI > >Apparently not. THanks for your help. > >> -----Original Message----- >> From: Frazier, Joe Jr [mailto:Joe...@Pe...] >> Sent: Monday, June 04, 2001 10:53 AM >> To: per...@li... >> Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >> >> >> Perl 5.6 has the latest version on Activestates PPM. >> >> C:\>perl -v >> >> This is perl, v5.6.1 built for MSWin32-x86-multi-thread >> (with 1 registered patch, see perl -V for more detail) >> >> Copyright 1987-2001, Larry Wall >> >> Binary build 626 provided by ActiveState Tool Corp. >> http://www.ActiveState.com >> Built 01:31:15 May 2 2001 >> >> >> Perl may be copied only under the terms of either the Artistic License >> or the >> GNU General Public License, which may be found in the Perl 5 >> source kit. >> >> Complete documentation for Perl, including FAQ lists, should >> be found on >> this system using `man perl' or `perldoc perl'. If you have access to >> the >> Internet, point your browser at http://www.perl.com/, the Perl Home >> Page. >> >> >> C:\>ppm search Win32-GUI >> Packages available from >> http://ppm.ActiveState.com/cgibin/PPM/ppmserver.pl?urn:/PPMServer: >> Win32-GUI [0.0.558] Win32 Graphical User Interface Extension >> Win32-GuiTest [0.9 ] Perl GUI Test Utilities >> >> I didnt install from there since I already had downloaded the zip file >> and installed before I found out it was on the AS server repository, >> but, one source is as good as another right? Also, you could download >> the zip and install via ppm from the zip file contents localy. I used >> to have to do this at my old job since I could never get ppm to work >> through the firewall there.... >> >> >> >> > -----Original Message----- >> > From: Peter Eisengrein [mailto:Pet...@at...] >> > Sent: Monday, June 04, 2001 09:23 >> > To: 'per...@li...' >> > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >> > >> > >> > Tried again, got 502. see below... >> > >> > C:\ActivePerl\lib\gui>ppm install --location=http://dada.perl.it/PPM >> > Win32-GUI >> > Retrieving package 'Win32-GUI'... >> > Writing C:\ActivePerl\site\lib\auto\Win32\GUI\.packlist >> > >> > C:\ActivePerl\lib\gui>ppm >> > PPM interactive shell (2.0) - type 'help' for available commands. >> > PPM> query >> > Archive-Tar [0.072 ] module for manipulation of tar archives. >> > Compress-Zlib [1.03 ] Interface to zlib compression library >> > HTML-Parser [2.23 ] SGML parser class >> > MIME-Base64 [2.11 ] Encoding and decoding of base64 strings >> > Net-Telnet [3.02 ] Interact with TELNET port or other TCP ports >> > PPM [2 ] Perl Package Manager: locate, >> install, upgrade >> > software >> > packages. >> > Tk [800.022] Tk - a Graphical User Interface Toolkit >> > URI [1.04 ] Uniform Resource Identifiers >> > (absolute and relative) >> > Win32-API [0.01 ] Implementation of arbitrary Win32 APIs. >> > Win32-GUI [0.0.502] Perl-Win32 Graphical User Interface >> Extension >> > XML-Element [1.07 ] Base element class for XML elements >> > XML-Parser [2.27 ] A Perl module for parsing XML documents >> > libwin32 [0.16 ] A collection of extensions that aims >> > to provide >> > comprehensive access to the Windows API. >> > libwww-perl [5.45 ] Library for WWW access in Perl >> > PPM> >> > >> > >> > > -----Original Message----- >> > > From: Peter Eisengrein >> > > Sent: Monday, June 04, 2001 9:17 AM >> > > To: 'per...@li...' >> > > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >> > > >> > > >> > > I see the 0.0.558 tar.gz version on your site but your /ppm >> > > still says 502, which is where I got it from. Is that accurate? >> > > >> > > > -----Original Message----- >> > > > From: Aldo Calpini [mailto:da...@pe...] >> > > > Sent: Monday, June 04, 2001 4:56 AM >> > > > To: Peter Eisengrein >> > > > Subject: Re: [perl-win32-gui-users] Win32::GUI::Timer >> memory leak? >> > > > >> > > > >> > > > Peter Eisengrein wrote: >> > > > > 0.0.502 -- I actually just pulled it off your site maybe >> > > > two weeks ago. >> > > > > Is there an even newer version? Thanks for your help -- I >> > > love this >> > > > > module! >> > > > >> > > > uhm... my site contains version 0.0.558, it was uploaded on >> > > > 22 Jan 2001. >> > > > you probably have a (way too much) caching proxy :-) >> > > > >> > > > >> > > > 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 >> > > > >> > > >> > >> > _______________________________________________ >> > 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 >> > >_______________________________________________ >Perl-Win32-GUI-Users mailing list >Per...@li... >http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users Cheers, Marjolein Katsma HomeSite Help - http://hshelp.com/ - Extensions, Tips and Tools |
From: Frazier, J. J. <Joe...@Pe...> - 2001-06-05 13:55:26
|
Unzip to (example) c:\gui\. cd c:\gui. type: c:\>ppm install Win32-GUI.ppd Basically, you leave out the location part and actually cd to that folder from your shell. make sure you put the file extension, so that ppm knows to load it from the local machine instead of getting it from a repository. As I said, I had to do this at my old job and was able to install 10+ modules in this manner on 7 machines. BUT, one other thing to note is what version of PERL are you running? 5.005_3 does not have a ppd file for Win32::GUI 0.0.558 and ( Someone correct me if I am wrong) you cannot build Win32::GUI 0.0.558 under the older builds of Perl. This MAY be why you got the 0.0.502 version since the ppm can tell what version of Perl you have and install the appropriate module. If you have perl 5.6+, you should be able to "ppm install Win32::GUI" and it will install correctly from the AS repository. If not, you are probably limited to 0.0.502 unless you upgrade. > -----Original Message----- > From: Peter Eisengrein [mailto:Pet...@at...] > Sent: Tuesday, June 05, 2001 09:15 > To: 'per...@li...' > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >=20 >=20 > I've tried to install via ppm from the zip file but always=20 > get "Could not > locate a PPD" error. Can someone send the syntax on how to do this? I > assumed it would be=20 >=20 > ppm install --location=3D"filepath\filename" Win32-GUI >=20 > Apparently not. THanks for your help. >=20 > > -----Original Message----- > > From: Frazier, Joe Jr [mailto:Joe...@Pe...] > > Sent: Monday, June 04, 2001 10:53 AM > > To: per...@li... > > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > >=20 > >=20 > > Perl 5.6 has the latest version on Activestates PPM.=20 > >=20 > > C:\>perl -v > >=20 > > This is perl, v5.6.1 built for MSWin32-x86-multi-thread > > (with 1 registered patch, see perl -V for more detail) > >=20 > > Copyright 1987-2001, Larry Wall > >=20 > > Binary build 626 provided by ActiveState Tool Corp. > > http://www.ActiveState.com > > Built 01:31:15 May 2 2001 > >=20 > >=20 > > Perl may be copied only under the terms of either the=20 > Artistic License > > or the > > GNU General Public License, which may be found in the Perl 5=20 > > source kit. > >=20 > > Complete documentation for Perl, including FAQ lists, should=20 > > be found on > > this system using `man perl' or `perldoc perl'. If you=20 > have access to > > the > > Internet, point your browser at http://www.perl.com/, the Perl Home > > Page. > >=20 > >=20 > > C:\>ppm search Win32-GUI > > Packages available from > > http://ppm.ActiveState.com/cgibin/PPM/ppmserver.pl?urn:/PPMServer: > > Win32-GUI [0.0.558] Win32 Graphical User Interface Extension > > Win32-GuiTest [0.9 ] Perl GUI Test Utilities > >=20 > > I didnt install from there since I already had downloaded=20 > the zip file > > and installed before I found out it was on the AS server repository, > > but, one source is as good as another right? Also, you=20 > could download > > the zip and install via ppm from the zip file contents=20 > localy. I used > > to have to do this at my old job since I could never get ppm to work > > through the firewall there.... > >=20 > >=20 > >=20 > > > -----Original Message----- > > > From: Peter Eisengrein [mailto:Pet...@at...] > > > Sent: Monday, June 04, 2001 09:23 > > > To: 'per...@li...' > > > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > > >=20 > > >=20 > > > Tried again, got 502. see below... > > >=20 > > > C:\ActivePerl\lib\gui>ppm install=20 > --location=3Dhttp://dada.perl.it/PPM > > > Win32-GUI > > > Retrieving package 'Win32-GUI'... > > > Writing C:\ActivePerl\site\lib\auto\Win32\GUI\.packlist > > >=20 > > > C:\ActivePerl\lib\gui>ppm > > > PPM interactive shell (2.0) - type 'help' for available commands. > > > PPM> query > > > Archive-Tar [0.072 ] module for manipulation of tar archives. > > > Compress-Zlib [1.03 ] Interface to zlib compression library > > > HTML-Parser [2.23 ] SGML parser class > > > MIME-Base64 [2.11 ] Encoding and decoding of base64 strings > > > Net-Telnet [3.02 ] Interact with TELNET port or=20 > other TCP ports > > > PPM [2 ] Perl Package Manager: locate,=20 > > install, upgrade > > > software > > > packages. > > > Tk [800.022] Tk - a Graphical User Interface Toolkit > > > URI [1.04 ] Uniform Resource Identifiers=20 > > > (absolute and relative) > > > Win32-API [0.01 ] Implementation of arbitrary Win32 APIs. > > > Win32-GUI [0.0.502] Perl-Win32 Graphical User Interface=20 > > Extension > > > XML-Element [1.07 ] Base element class for XML elements > > > XML-Parser [2.27 ] A Perl module for parsing XML documents > > > libwin32 [0.16 ] A collection of extensions that aims=20 > > > to provide > > > comprehensive access to the Windows API. > > > libwww-perl [5.45 ] Library for WWW access in Perl > > > PPM> > > >=20 > > >=20 > > > > -----Original Message----- > > > > From: Peter Eisengrein=20 > > > > Sent: Monday, June 04, 2001 9:17 AM > > > > To: 'per...@li...' > > > > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer=20 > memory leak? > > > >=20 > > > >=20 > > > > I see the 0.0.558 tar.gz version on your site but your /ppm=20 > > > > still says 502, which is where I got it from. Is that accurate? > > > >=20 > > > > > -----Original Message----- > > > > > From: Aldo Calpini [mailto:da...@pe...] > > > > > Sent: Monday, June 04, 2001 4:56 AM > > > > > To: Peter Eisengrein > > > > > Subject: Re: [perl-win32-gui-users] Win32::GUI::Timer=20 > > memory leak? > > > > >=20 > > > > >=20 > > > > > Peter Eisengrein wrote: > > > > > > 0.0.502 -- I actually just pulled it off your site maybe=20 > > > > > two weeks ago. > > > > > > Is there an even newer version? Thanks for your help -- I=20 > > > > love this > > > > > > module! > > > > >=20 > > > > > uhm... my site contains version 0.0.558, it was uploaded on=20 > > > > > 22 Jan 2001. > > > > > you probably have a (way too much) caching proxy :-) > > > > >=20 > > > > >=20 > > > > > cheers, > > > > > Aldo > > > > >=20 > > > > > __END__ > > > > > $_=3Dq,just perl,,s, , another ,,s,$, hacker,,print; > > > > >=20 > > > > >=20 > > > > >=20 > > > > > _______________________________________________ > > > > > Perl-Win32-GUI-Users mailing list > > > > > Per...@li... > > > > >=20 > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > > > > >=20 > > > >=20 > > >=20 > > > _______________________________________________ > > > Perl-Win32-GUI-Users mailing list > > > Per...@li... > > > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > > >=20 > >=20 > > _______________________________________________ > > Perl-Win32-GUI-Users mailing list > > Per...@li... > > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > >=20 >=20 > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users >=20 |
From: Peter E. <Pet...@at...> - 2001-06-05 13:14:57
|
I've tried to install via ppm from the zip file but always get "Could not locate a PPD" error. Can someone send the syntax on how to do this? I assumed it would be ppm install --location="filepath\filename" Win32-GUI Apparently not. THanks for your help. > -----Original Message----- > From: Frazier, Joe Jr [mailto:Joe...@Pe...] > Sent: Monday, June 04, 2001 10:53 AM > To: per...@li... > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > > > Perl 5.6 has the latest version on Activestates PPM. > > C:\>perl -v > > This is perl, v5.6.1 built for MSWin32-x86-multi-thread > (with 1 registered patch, see perl -V for more detail) > > Copyright 1987-2001, Larry Wall > > Binary build 626 provided by ActiveState Tool Corp. > http://www.ActiveState.com > Built 01:31:15 May 2 2001 > > > Perl may be copied only under the terms of either the Artistic License > or the > GNU General Public License, which may be found in the Perl 5 > source kit. > > Complete documentation for Perl, including FAQ lists, should > be found on > this system using `man perl' or `perldoc perl'. If you have access to > the > Internet, point your browser at http://www.perl.com/, the Perl Home > Page. > > > C:\>ppm search Win32-GUI > Packages available from > http://ppm.ActiveState.com/cgibin/PPM/ppmserver.pl?urn:/PPMServer: > Win32-GUI [0.0.558] Win32 Graphical User Interface Extension > Win32-GuiTest [0.9 ] Perl GUI Test Utilities > > I didnt install from there since I already had downloaded the zip file > and installed before I found out it was on the AS server repository, > but, one source is as good as another right? Also, you could download > the zip and install via ppm from the zip file contents localy. I used > to have to do this at my old job since I could never get ppm to work > through the firewall there.... > > > > > -----Original Message----- > > From: Peter Eisengrein [mailto:Pet...@at...] > > Sent: Monday, June 04, 2001 09:23 > > To: 'per...@li...' > > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > > > > > > Tried again, got 502. see below... > > > > C:\ActivePerl\lib\gui>ppm install --location=http://dada.perl.it/PPM > > Win32-GUI > > Retrieving package 'Win32-GUI'... > > Writing C:\ActivePerl\site\lib\auto\Win32\GUI\.packlist > > > > C:\ActivePerl\lib\gui>ppm > > PPM interactive shell (2.0) - type 'help' for available commands. > > PPM> query > > Archive-Tar [0.072 ] module for manipulation of tar archives. > > Compress-Zlib [1.03 ] Interface to zlib compression library > > HTML-Parser [2.23 ] SGML parser class > > MIME-Base64 [2.11 ] Encoding and decoding of base64 strings > > Net-Telnet [3.02 ] Interact with TELNET port or other TCP ports > > PPM [2 ] Perl Package Manager: locate, > install, upgrade > > software > > packages. > > Tk [800.022] Tk - a Graphical User Interface Toolkit > > URI [1.04 ] Uniform Resource Identifiers > > (absolute and relative) > > Win32-API [0.01 ] Implementation of arbitrary Win32 APIs. > > Win32-GUI [0.0.502] Perl-Win32 Graphical User Interface > Extension > > XML-Element [1.07 ] Base element class for XML elements > > XML-Parser [2.27 ] A Perl module for parsing XML documents > > libwin32 [0.16 ] A collection of extensions that aims > > to provide > > comprehensive access to the Windows API. > > libwww-perl [5.45 ] Library for WWW access in Perl > > PPM> > > > > > > > -----Original Message----- > > > From: Peter Eisengrein > > > Sent: Monday, June 04, 2001 9:17 AM > > > To: 'per...@li...' > > > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > > > > > > > > > I see the 0.0.558 tar.gz version on your site but your /ppm > > > still says 502, which is where I got it from. Is that accurate? > > > > > > > -----Original Message----- > > > > From: Aldo Calpini [mailto:da...@pe...] > > > > Sent: Monday, June 04, 2001 4:56 AM > > > > To: Peter Eisengrein > > > > Subject: Re: [perl-win32-gui-users] Win32::GUI::Timer > memory leak? > > > > > > > > > > > > Peter Eisengrein wrote: > > > > > 0.0.502 -- I actually just pulled it off your site maybe > > > > two weeks ago. > > > > > Is there an even newer version? Thanks for your help -- I > > > love this > > > > > module! > > > > > > > > uhm... my site contains version 0.0.558, it was uploaded on > > > > 22 Jan 2001. > > > > you probably have a (way too much) caching proxy :-) > > > > > > > > > > > > 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 > > > > > > > > > > > _______________________________________________ > > 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: Frazier, J. J. <Joe...@Pe...> - 2001-06-04 16:24:04
|
Perl 5.6 has the latest version on Activestates PPM.=20 C:\>perl -v This is perl, v5.6.1 built for MSWin32-x86-multi-thread (with 1 registered patch, see perl -V for more detail) Copyright 1987-2001, Larry Wall Binary build 626 provided by ActiveState Tool Corp. http://www.ActiveState.com Built 01:31:15 May 2 2001 Perl may be copied only under the terms of either the Artistic License or the GNU General Public License, which may be found in the Perl 5 source kit. Complete documentation for Perl, including FAQ lists, should be found on this system using `man perl' or `perldoc perl'. If you have access to the Internet, point your browser at http://www.perl.com/, the Perl Home Page. C:\>ppm search Win32-GUI Packages available from http://ppm.ActiveState.com/cgibin/PPM/ppmserver.pl?urn:/PPMServer: Win32-GUI [0.0.558] Win32 Graphical User Interface Extension Win32-GuiTest [0.9 ] Perl GUI Test Utilities I didnt install from there since I already had downloaded the zip file and installed before I found out it was on the AS server repository, but, one source is as good as another right? Also, you could download the zip and install via ppm from the zip file contents localy. I used to have to do this at my old job since I could never get ppm to work through the firewall there.... > -----Original Message----- > From: Peter Eisengrein [mailto:Pet...@at...] > Sent: Monday, June 04, 2001 09:23 > To: 'per...@li...' > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? >=20 >=20 > Tried again, got 502. see below... >=20 > C:\ActivePerl\lib\gui>ppm install --location=3Dhttp://dada.perl.it/PPM > Win32-GUI > Retrieving package 'Win32-GUI'... > Writing C:\ActivePerl\site\lib\auto\Win32\GUI\.packlist >=20 > C:\ActivePerl\lib\gui>ppm > PPM interactive shell (2.0) - type 'help' for available commands. > PPM> query > Archive-Tar [0.072 ] module for manipulation of tar archives. > Compress-Zlib [1.03 ] Interface to zlib compression library > HTML-Parser [2.23 ] SGML parser class > MIME-Base64 [2.11 ] Encoding and decoding of base64 strings > Net-Telnet [3.02 ] Interact with TELNET port or other TCP ports > PPM [2 ] Perl Package Manager: locate, install, upgrade > software > packages. > Tk [800.022] Tk - a Graphical User Interface Toolkit > URI [1.04 ] Uniform Resource Identifiers=20 > (absolute and relative) > Win32-API [0.01 ] Implementation of arbitrary Win32 APIs. > Win32-GUI [0.0.502] Perl-Win32 Graphical User Interface Extension > XML-Element [1.07 ] Base element class for XML elements > XML-Parser [2.27 ] A Perl module for parsing XML documents > libwin32 [0.16 ] A collection of extensions that aims=20 > to provide > comprehensive access to the Windows API. > libwww-perl [5.45 ] Library for WWW access in Perl > PPM> >=20 >=20 > > -----Original Message----- > > From: Peter Eisengrein=20 > > Sent: Monday, June 04, 2001 9:17 AM > > To: 'per...@li...' > > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > >=20 > >=20 > > I see the 0.0.558 tar.gz version on your site but your /ppm=20 > > still says 502, which is where I got it from. Is that accurate? > >=20 > > > -----Original Message----- > > > From: Aldo Calpini [mailto:da...@pe...] > > > Sent: Monday, June 04, 2001 4:56 AM > > > To: Peter Eisengrein > > > Subject: Re: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > > >=20 > > >=20 > > > Peter Eisengrein wrote: > > > > 0.0.502 -- I actually just pulled it off your site maybe=20 > > > two weeks ago. > > > > Is there an even newer version? Thanks for your help -- I=20 > > love this > > > > module! > > >=20 > > > uhm... my site contains version 0.0.558, it was uploaded on=20 > > > 22 Jan 2001. > > > you probably have a (way too much) caching proxy :-) > > >=20 > > >=20 > > > cheers, > > > Aldo > > >=20 > > > __END__ > > > $_=3Dq,just perl,,s, , another ,,s,$, hacker,,print; > > >=20 > > >=20 > > >=20 > > > _______________________________________________ > > > Perl-Win32-GUI-Users mailing list > > > Per...@li... > > > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > > >=20 > >=20 >=20 > _______________________________________________ > Perl-Win32-GUI-Users mailing list > Per...@li... > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users >=20 |
From: Frazier, J. J. <Joe...@Pe...> - 2001-06-04 14:17:56
|
one change.... close $css; =09 system("notepad.exe $css"); } Should be :=20 close OUT; =09 system("notepad.exe $css"); } =09 you HAVE to flush the buffer. I get the style sheet, but it is empty in the system call and doesn't get generated on the filesystem until you close the window. You could also select the OUT filehandle right after opening and set autoflush to true. The other thing you may want to try is to dump the data into a single variable. THIS way, you can print OUT $varname; OR you can add a richedit or multiline text field for display later...... You may wish to have this pop up a new window and let the new window have the save sub, so you can manually edit the stylesheet. Just some food for thought. > -----Original Message----- > From: Chris Etzel [mailto:ce...@mi...] > Sent: Sunday, June 03, 2001 15:08 > To: per...@li... > Subject: Re: [perl-win32-gui-users] showing firstvisible in a=20 > combo box >=20 >=20 > phew. Thanks folks. that was the last bug to figure out. I am=20 > finished and > your suggestions worked. I created a CSS Generator for a=20 > friend and now he > can test it. If anybody wants to pick it apart for fun, here it is. >=20 > Chris >=20 >=20 > ----- Original Message ----- > From: "Piske, Harald" <Har...@bo...> > To: <per...@li...> > Sent: Sunday, June 03, 2001 10:35 AM > Subject: RE: [perl-win32-gui-users] showing firstvisible in a=20 > combo box >=20 >=20 > > FirstVisibleItem takes an Index, not a string. The Index is=20 > zero-based, as > > Dave said. The points are > > > > a) if you want a specific entry to be selected by default,=20 > so that the > user > > can change is if she wants and leave it if she doesn't,=20 > then you want > > $LB->Select(), not FirstVisibleItem. > > > > b) use $LB->FirstVisibleItem($LB->SelectedItem()) to make sure the > selected > > entry is not scrolled out of view. > > > > c) if you sort the entries in your listbox, $LB->Select(0)=20 > does not select > > the item you inserted first, but the first item in the sort order. > > > > d) user $LB->FindString($entry) to get the zero-based index=20 > of $entry, for > > use in other methods like Select of FirstVisibleItem. > > > > Have fun, > > Harald > > > > > -----Original Message----- > > > From: Dave [mailto:da...@sk...] > > > Sent: Sonntag, 3. Juni 2001 06:04 > > > To: per...@li... > > > Subject: RE: [perl-win32-gui-users] showing firstvisible in a > > > combo box > > > > > > > > > I'm not sure this is the best way, but what I would do is change > > > > > > $bftextdecdd->FirstVisibleItem(); > > > to > > > $bftextdecdd->Select(0); > > > > > > That will automatically select the first element in your list. > > > ( it is 0 because combobox uses a 0-based index to=20 > reference the items > > > in the list ). > > > > > > > > > Hope that helps. > > > > > > Dave McLaughlin > > > da...@sk... > > > > > > > > > -----Original Message----- > > > From: per...@li... > > > [mailto:per...@li...]=20 > On Behalf Of > > > Chris Etzel > > > Sent: Sunday, June 03, 2001 1:56 AM > > > To: per...@li... > > > Subject: [perl-win32-gui-users] showing firstvisible in a=20 > combo box > > > > > > > > > Hey, > > > > > > I have this code, and I want to make the word 'none' from the list > > > visible by default and then the user can choose something=20 > else if they > > > want. I have looked through the docs and have tried > > > FirstVisibleItem but > > > no luck. Any help appreciated! > > > > > > Chris > > > > > > $bftextdecdd=3D$Win1->AddCombobox( > > > -name=3D>"bftextdecdd", > > > -width=3D>100, > > > -height=3D>100, > > > -tabstop=3D>1, > > > -top=3D>242, > > > -left=3D>370, > > > -style=3D> WS_VISIBLE | WS_SCROLL | 3 > > > ); > > > > > > $bftextdecdd->InsertItem("none"); > > > $bftextdecdd->InsertItem("blink"); > > > $bftextdecdd->InsertItem("line-through"); > > > $bftextdecdd->InsertItem("underline"); > > > $bftextdecdd->InsertItem("overline"); > > > #$bftextdecdd->FirstVisibleItem(); how the hell do I show > > > 'none' as > > > #first visible by default? > > > > > > sub bftextdecdd_Change{ > > > > > > $bftextdecdd->Text($bftextdecdd->GetString($bftextdecdd->Selec > > > tedItem)); > > > } > > > > > > > > > > > > _______________________________________________ > > > 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 > > > > > > > _______________________________________________ > > Perl-Win32-GUI-Users mailing list > > Per...@li... > > http://lists.sourceforge.net/lists/listinfo/perl-win32-gui-users > > >=20 |
From: Peter E. <Pet...@at...> - 2001-06-04 14:01:12
|
I see the 0.0.558 tar.gz version on your site but your /ppm still says 502, which is where I got it from. Is that accurate? > -----Original Message----- > From: Aldo Calpini [mailto:da...@pe...] > Sent: Monday, June 04, 2001 4:56 AM > To: Peter Eisengrein > Subject: Re: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > > > Peter Eisengrein wrote: > > 0.0.502 -- I actually just pulled it off your site maybe > two weeks ago. > > Is there an even newer version? Thanks for your help -- I love this > > module! > > uhm... my site contains version 0.0.558, it was uploaded on > 22 Jan 2001. > you probably have a (way too much) caching proxy :-) > > > 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: Peter E. <Pet...@at...> - 2001-06-04 13:48:42
|
Tried again, got 502. see below... C:\ActivePerl\lib\gui>ppm install --location=http://dada.perl.it/PPM Win32-GUI Retrieving package 'Win32-GUI'... Writing C:\ActivePerl\site\lib\auto\Win32\GUI\.packlist C:\ActivePerl\lib\gui>ppm PPM interactive shell (2.0) - type 'help' for available commands. PPM> query Archive-Tar [0.072 ] module for manipulation of tar archives. Compress-Zlib [1.03 ] Interface to zlib compression library HTML-Parser [2.23 ] SGML parser class MIME-Base64 [2.11 ] Encoding and decoding of base64 strings Net-Telnet [3.02 ] Interact with TELNET port or other TCP ports PPM [2 ] Perl Package Manager: locate, install, upgrade software packages. Tk [800.022] Tk - a Graphical User Interface Toolkit URI [1.04 ] Uniform Resource Identifiers (absolute and relative) Win32-API [0.01 ] Implementation of arbitrary Win32 APIs. Win32-GUI [0.0.502] Perl-Win32 Graphical User Interface Extension XML-Element [1.07 ] Base element class for XML elements XML-Parser [2.27 ] A Perl module for parsing XML documents libwin32 [0.16 ] A collection of extensions that aims to provide comprehensive access to the Windows API. libwww-perl [5.45 ] Library for WWW access in Perl PPM> > -----Original Message----- > From: Peter Eisengrein > Sent: Monday, June 04, 2001 9:17 AM > To: 'per...@li...' > Subject: RE: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > > > I see the 0.0.558 tar.gz version on your site but your /ppm > still says 502, which is where I got it from. Is that accurate? > > > -----Original Message----- > > From: Aldo Calpini [mailto:da...@pe...] > > Sent: Monday, June 04, 2001 4:56 AM > > To: Peter Eisengrein > > Subject: Re: [perl-win32-gui-users] Win32::GUI::Timer memory leak? > > > > > > Peter Eisengrein wrote: > > > 0.0.502 -- I actually just pulled it off your site maybe > > two weeks ago. > > > Is there an even newer version? Thanks for your help -- I > love this > > > module! > > > > uhm... my site contains version 0.0.558, it was uploaded on > > 22 Jan 2001. > > you probably have a (way too much) caching proxy :-) > > > > > > 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-06-04 10:40:04
|
Peter Eisengrein wrote: > 0.0.502 -- I actually just pulled it off your site maybe two weeks ago. > Is there an even newer version? Thanks for your help -- I love this > module! uhm... my site contains version 0.0.558, it was uploaded on 22 Jan 2001. you probably have a (way too much) caching proxy :-) cheers, Aldo __END__ $_=q,just perl,,s, , another ,,s,$, hacker,,print; |