RE: Perl Win32 Application.

2002-06-27 Thread Brad Fike
I would use the Tk module. But I think there is also a Win32::GUI module. (or something like that) -Original Message- From: Joe Echavarria [SMTP:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 9:57 AM To: [EMAIL PROTECTED] Subject: Perl Win32 Application. Hi there, I

RE: Perl Win32 Application.

2002-06-27 Thread Shishir K. Singh
I would use the Tk module. But I think there is also a Win32::GUI module. (or something like that) I would always go for Perl TK. But beware!! If you want to use some of the derived widgets...they suck !! eg ..BrowseEntry and DirTree. I had to modify them to bring back some sanity. Bur the

Re: Perl Win32 Application.

2002-06-27 Thread stephane groux
Hi Joe, Search fro Perl Tk There's also a good book on it at http://www.oreilly.com/catalog/mastperltk/toc.html stephane Joe Echavarria wrote: Hi there, I want to write a perl application for a win32 operating system. The application must be using windows,forms, the same interfaces

RE: Perl Win32 Application.

2002-06-27 Thread Nikola Janceski
AM To: Joe Echavarria Cc: [EMAIL PROTECTED] Subject: Re: Perl Win32 Application. Hi Joe, Search fro Perl Tk There's also a good book on it at http://www.oreilly.com/catalog/mastperltk/toc.html stephane Joe Echavarria wrote: Hi there, I want to write a perl application

RE: Perl Win32 Application.

2002-06-27 Thread Hanson, Robert
wxPerl looked pretty good, but I never did more than just play around with it. The thing I like it that it will use the builtin Windows widgets, so it looks like an ordinary windows app (Win32::GUI will as well). Here is an article on it, decide for yourself.

RE: Perl Win32 Application.

2002-06-27 Thread Shishir K. Singh
Mastering Perl Tk I guess is the better one!! -Original Message- From: Nikola Janceski [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 11:12 AM To: 'stephane groux'; Joe Echavarria Cc: [EMAIL PROTECTED] Subject: RE: Perl Win32 Application. Why do I get the feeling that I

RE: Perl Win32 Application.

2002-06-27 Thread Timothy Johnson
; stephane groux; Joe Echavarria Cc: [EMAIL PROTECTED] Subject: RE: Perl Win32 Application. Mastering Perl Tk I guess is the better one!! -Original Message- From: Nikola Janceski [mailto:[EMAIL PROTECTED]] Sent: Thursday, June 27, 2002 11:12 AM To: 'stephane groux'; Joe Echavarria Cc

Re: Perl Win32 Application.

2002-06-27 Thread Paul Johnson
On Thu, Jun 27, 2002 at 11:02:37AM -0400, Shishir K. Singh wrote: I would always go for Perl TK. But beware!! If you want to use some of the derived widgets...they suck !! eg ..BrowseEntry and DirTree. I had to modify them to bring back some sanity. Bur the best part is it works on UNIX as

RE: Perl Win32 Application.

2002-06-27 Thread Shishir K. Singh
I would always go for Perl TK. But beware!! If you want to use some of the derived widgets...they suck !! eg ..BrowseEntry and DirTree. I had to modify them to bring back some sanity. Bur the best part is it works on UNIX as well as on Windows. Did your patches make it into the main