system command question

2011-09-28 Thread Amish Rughoonundon
Hi, I am trying to run a make file from perl. For the make file to run, some environment variables need to be set. Usually I would use a batch file with the following setting SET A_DIR=C:\TOOLS\TMS320 SET C_DIR=C:\TOOLS\TMS320 PATH=%PATH%;C:\TOOLS;C:\TOOLS\TMS320 make and it works. I tried to

GUI Library

2011-09-28 Thread Francisco Rivas
Hello, I am planning to write a very small stand alone application to write some file and I would like to know which is the best/recommended GUI library for Perl. I have read about wxPerl, GTK2, PerlQT4 and even Tk, but I would like to know what people recommend from their experience. Thank you

RE: system command question

2011-09-28 Thread Ken Slater
-Original Message- From: Amish Rughoonundon [mailto:amishrughoonun...@gmail.com] Sent: Tuesday, September 27, 2011 4:44 PM To: beginners@perl.org Subject: system command question Hi, I am trying to run a make file from perl. For the make file to run, some environment variables

Re: GUI Library

2011-09-28 Thread Alan Haggai Alavi
On 09/28/11 16:29, Francisco Rivas wrote: Hello, I am planning to write a very small stand alone application to write some file and I would like to know which is the best/recommended GUI library for Perl. I have read about wxPerl, GTK2, PerlQT4 and even Tk, but I would like to know what people

Re: GUI Library

2011-09-28 Thread Octavian Rasnita
From: Alan Haggai Alavi alanhag...@alanhaggai.org On 09/28/11 16:29, Francisco Rivas wrote: Hello, I am planning to write a very small stand alone application to write some file and I would like to know which is the best/recommended GUI library for Perl. I have read about wxPerl, GTK2, PerlQT4

Re: GUI Library

2011-09-28 Thread Shawn H Corey
On 11-09-28 06:59 AM, Francisco Rivas wrote: Hello, I am planning to write a very small stand alone application to write some file and I would like to know which is the best/recommended GUI library for Perl. I have read about wxPerl, GTK2, PerlQT4 and even Tk, but I would like to know what

Re: GUI Library

2011-09-28 Thread Rob Dixon
On 28/09/2011 14:09, Shawn H Corey wrote: On 11-09-28 06:59 AM, Francisco Rivas wrote: Hello, I am planning to write a very small stand alone application to write some file and I would like to know which is the best/recommended GUI library for Perl. I have read about wxPerl, GTK2, PerlQT4 and

Re: GUI Library

2011-09-28 Thread Francisco Rivas
Thank you very much, I will take a look a both wxPerl and Perl/Tk. The application is very simple just read a file of paired values for example X : Y and then show them to the user cha nge the Y value and then save all changes to the same file. Thank you very much for your time and every single

Need help getting data from a structure..

2011-09-28 Thread Frank Kleinburg
Hello list, I've been playing with perl going back to the 4.x days, mostly simple scripts to monitor server or application daemons, kick off and manage backups, or read log files.. While some of these programs are fairly complicated, none have more than just tickled the more sophisticated

Re: GUI Library

2011-09-28 Thread Octavian Rasnita
From: Shawn H Corey shawnhco...@gmail.com On 11-09-28 06:59 AM, Francisco Rivas wrote: Hello, I am planning to write a very small stand alone application to write some file and I would like to know which is the best/recommended GUI library for Perl. I have read about wxPerl, GTK2, PerlQT4 and

Re: Need help getting data from a structure..

2011-09-28 Thread Brandon McCaig
On Wed, Sep 28, 2011 at 10:33 AM, Frank Kleinburg fklei...@gmail.com wrote:        $Policy = {                NAME = $PlcyName,                DESCRPT = $PlcyDesc,                INSTNCE = { %Instance },        };        %Instance = (                $CondID = {                        

Re: Need help getting data from a structure..

2011-09-28 Thread 'lesleyb'
On Wed, Sep 28, 2011 at 09:33:50AM -0500, Frank Kleinburg wrote: Hello list, I've been playing with perl going back to the 4.x days, mostly simple scripts to monitor server or application daemons, kick off and manage backups, or read log files.. While some of these programs are fairly

Re: Need help getting data from a structure..

2011-09-28 Thread Brandon McCaig
On Wed, Sep 28, 2011 at 1:00 PM, lesleyb lesl...@herlug.org.uk wrote: $Policy-{INSTNCE} evaluates to a hash.  Then you ask Perl to access the value given by the key $CondID in that hash.  $CondID is a key to a reference to another anonymous hash.  But this time you don't use the '-' to get to

Re: Need help getting data from a structure..

2011-09-28 Thread Brandon McCaig
Frank: CCing the list since you didn't indicate that this was a private message. I'm assuming you meant to reply to all (which is probably what you should have done anyway). :) On Wed, Sep 28, 2011 at 12:55 PM, Frank Kleinburg fklei...@gmail.com wrote: Brandon, You nailed it.. The one change

best AJAX tool/module ?

2011-09-28 Thread Rajeev Prasad
Hello,   what would be the best AJAX module to use with perl?   is cgi::ajax best? I am not using CGI in my project so far so checking if there is anything else out there...   are there any other modules which would be easy (natural fit) to work with data returned in JASON?   please give your

Re: Need help getting data from a structure..

2011-09-28 Thread Rob Dixon
On 28/09/2011 15:33, Frank Kleinburg wrote: Hello list, I've been playing with perl going back to the 4.x days, mostly simple scripts to monitor server or application daemons, kick off and manage backups, or read log files.. While some of these programs are fairly complicated, none have more

Re: best AJAX tool/module ?

2011-09-28 Thread Jeff Pang
I have been using CGI::Ajax and JSON, both work fine for me. 29 сентября 2011, 00:50 от Rajeev Prasad rp.ne...@yahoo.com: Hello,   what would be the best AJAX module to use with perl?   is cgi::ajax best? I am not using CGI in my project so far so checking if there is anything else out

Re: best AJAX tool/module ?

2011-09-28 Thread Rajeev Prasad
how about dojo EXT motools  ...etc. ? can these be integrated with perl CGI? From: Jeff Pang jeffp...@mail.ru To: Rajeev Prasad rp.ne...@yahoo.com Cc: beginners@perl.org beginners@perl.org Sent: Wednesday, September 28, 2011 8:35 PM Subject: Re: best AJAX

Re: best AJAX tool/module ?

2011-09-28 Thread Octavian Rasnita
From: Rajeev Prasad rp.ne...@yahoo.com Hello, what would be the best AJAX module to use with perl? is cgi::ajax best? I am not using CGI in my project so far so checking if there is anything else out there... are there any other modules which would be easy (natural fit) to work with data