GUI Packages for ActiveState Perl

2005-05-04 Thread Siegfried Heintze
Hmmm I guess I should have been more specific in my previous email. I'm using ActiveState on windows and I just checked out http://ppm.activestate.com/BuildStatus/5.8.html and learned that a lot of those interesting packages like java::swing and gtk don't check out on ActiveState. Too bad.

Re: convert image sizes

2005-05-04 Thread Owen
On Tue, 3 May 2005 07:56:28 -0400 (EDT) Chris Devers <[EMAIL PROTECTED]> wrote: > On Tue, 3 May 2005, Ing. Branislav Gerzo wrote: > ImageMagick is good, but it's huge, and a little overcomplicated. > > Imager is smaller and simpler. > > >

perl opens command line window -- resize, change font?

2005-05-04 Thread robert johnson
hi, probably a trivial question, but i cant find the answer in various searches. my command-line driven Win32 perl executables (built with ActiveState PDK) always opens the MS Windows command terminal at the default settings for size and font, which imo is rather ugly. how can i force the comma

Favorite Packages for Platform Neutral GUI?

2005-05-04 Thread Siegfried Heintze
I get the impression that there are several alternatives to use=ing Tk for writing OS neutral GUI programs in Perl. Can anyone point me to a discussion that might help me choose one? Thanks, Siegfried -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTE

Blessing a reference

2005-05-04 Thread glidden, matthew
This may be a SOAP::Lite specific question, but maybe not. In the script below, the $soap variable gets a hash reference after calling ListBooks(). (I've verified this by printing the value itself, rather than calling "valueof" on it.) However, when I call valueof, it gives a "can't call method va

problem with GD

2005-05-04 Thread Ankur Gupta
Hi, Today I installed gdlib, GD and GD::Graph. There were some problems with make test but make install went fine. So I installed them forcefully. Now when I run a sample file from the samples directory I am getting the following error. /usr/bin/perl sample63.pl Processing sample63 ld.so.1: /depo

Re: perl GD package

2005-05-04 Thread Shiping Wang
try this: ppm install http://theoryx5.uwinnipeg.ca/ppms/GD.ppd Good luck! At 02:14 PM 5/4/2005, Mark Cohen wrote: Hello, When looking for the GD package under Windows using PPM i can't find the package. I try using the install GD but it tells me that that the package doesn't exist. The ppm version

perl GD package

2005-05-04 Thread Mark Cohen
Hello, When looking for the GD package under Windows using PPM i can't find the package. I try using the install GD but it tells me that that the package doesn't exist. The ppm version is 3.1 The repositories are: 1)Activestate PP2 repository 2)Activestate package repository What could be the rea

Re: import data to Excel Template

2005-05-04 Thread Paul Kraus
> I have an Excel template which uses macros and I want to import a tab > delimited file. Can someone pls suggest which module\s to use... > > I will be running this on a XP box. Have a look at this http://tinyurl.com/b3pgp or this http://tinyurl.com/8mhje HTH, Paul -- To unsubscribe, e-mail:

RE: Installing module for different platforms

2005-05-04 Thread Ankur Gupta
> DynaLoader module is installed for linux platform but not for > solaris. I also want to install it for solaris platform. When > I try to install from solaris platform(through CPAN) then it > says DynaLoader is already installed. > I am trying to use GD::Graph module from Solaris platform but

Installing module for different platforms

2005-05-04 Thread Ankur Gupta
Hi, DynaLoader module is installed for linux platform but not for solaris. I also want to install it for solaris platform. When I try to install from solaris platform(through CPAN) then it says DynaLoader is already installed. I am trying to use GD::Graph module from Solaris platform but seems to

Re: convert image sizes

2005-05-04 Thread JupiterHost.Net
With ImageMagick With Imager No ones playing yet w/ GD :) With GD: $img->thumb makes it 20% of the original size, many other ways to shrink it and it even can do resampling if you wish :) see http://search.cpan.org/~dmuey/GD-Image-Thumbnail-0.01/Thumbnail.pm for more details. Below you could

Re: convert image sizes

2005-05-04 Thread Wiggins d'Anconia
Brian Volk wrote: > >>-Original Message- >>From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] >>Behalf Of zentara >>Sent: Wednesday, May 04, 2005 4:22 AM >>To: beginners@perl.org >>Subject: Re: convert image sizes >> > > > >>With ImageMagick >> >>#!/usr/bin/perl >>use warnings; >>use st

RE: convert image sizes

2005-05-04 Thread Brian Volk
> -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Behalf Of zentara > Sent: Wednesday, May 04, 2005 4:22 AM > To: beginners@perl.org > Subject: Re: convert image sizes > > With ImageMagick > > #!/usr/bin/perl > use warnings; > use strict; > use Image::Magick;

RE: Search through two arrays for differences

2005-05-04 Thread Wagner, David --- Senior Programmer Analyst --- WGO
Not so much simplistic, but truly, learn the hash. I have from between 45 to 60 emails which I have responsibility for and the hash makes life such a breeze to accomplish the task. With the hash, you have the key right away ( the name of the file). Then depending on how you want to handle

RE: Search through two arrays for differences

2005-05-04 Thread david cateron
Thanks David but you're assuming I know more Perl than I do. I read your reply and honestly do not know what you said. I'm a Perl beginner--that's why I chose the beginners list. I've read the books about hashes, etc., but I was thinking this was just an array search. Maybe I'm being too sim

Re: populating a hash with % used as the key and F string as the value

2005-05-04 Thread John Doe
Am Dienstag, 3. Mai 2005 23.42 schrieb [EMAIL PROTECTED]: > John, > I am a lotus user so my top-down reply is default ...sorry. Don't know Lotus. No possibilities to change defaults there? ;-) > I think all looks good, but I have to ask why are you initializing an array > to hold values of a hash

Re: Howto Dynamically Combine Multiple Array in HoA

2005-05-04 Thread Xavier Noria
On May 4, 2005, at 10:00, Wijaya Edward wrote: my %hoa = @_; while (my $keys = $iter->next) { # given a representative in $keys generate the one we need my $composite_key = join '', sort { ... } @$keys; Whether a sort is fine or not depends on details of the problem to so

Re: Howto Dynamically Combine Multiple Array in HoA

2005-05-04 Thread Wijaya Edward
- Original Message - From: Xavier Noria <[EMAIL PROTECTED]> Date: Wednesday, May 4, 2005 3:03 pm Subject: Re: Howto Dynamically Combine Multiple Array in HoA > my %hoa = @_; > while (my $keys = $iter->next) > { ># given a representative in $keys generate the one we ne

Re: Howto Dynamically Combine Multiple Array in HoA

2005-05-04 Thread Xavier Noria
On May 4, 2005, at 3:45, Wijaya Edward wrote: Thanks so much, Xavi. Sure! Is that what you wanted? Yes it works just as I wanted. Excellent. This is my final subroutine using your suggestion. I modified a bit using "reverse" because the order of the concatenated strings matter. The last comment in

Re: passwords in perl: crypt() vs mds5_hex()

2005-05-04 Thread Ing. Branislav Gerzo
JupiterHost.Net [JN], on Tuesday, May 03, 2005 at 17:31 (-0500) made these points: JN> Thanks for the input John! Any other opinions and points anyone? in my point of view is MD5 ok, but I prefer "newer" hash algos, for example SHA1 -- How do you protect mail on web? I use http://www.2pu.net [