Re: Need help with Perl GUI

2005-08-03 Thread Octavian Rasnita
Unfortunately, Tk doesn't use standard GUI libraries, so the programs created with it won't be accessible for screen readers used by the blind. On the other hand, the programs created with Win32::GUI are very accessible and those created with WX are pretty accessible also. Teddy - Original

AW: Encoding \n in utf-16

2005-08-03 Thread Neunert Kim
Hi, I know the reason of this bug now. Under Windows, you have an implicit :crlf-layer in all file-in-out-actions which do this s/\n/\r\n/gs (or vice versa) things. For UTF-16, the :crlf layer is on the wrong side of the pipe ( internal - UTF-16 - crlf-conversion) because UTF-16 is treated as

RE: Need help with Perl GUI

2005-08-03 Thread h-taguchi
How about Prima? http://www.prima.eu.org/ About accessibility for screen readers. About easines to learn any other points. I'm interested in Perl GUI. I didn't make GUI application in Perl, also I didn't use Prima. But for a future chance, I like to know more... Regards, Hirosi Taguti [EMAIL

Re: HEY EVERT, please fix your autoreplies

2005-08-03 Thread Evert Kramer
Sorry my mistake. It'sa web mail thing a could fix. I think I need to unsubribe when I am on vacation So sorry again, Best, Evert - Original Message - From: robert [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 26, 2005 4:51 AM Subject: HEY EVERT, please fix your

Re: Need help with Perl GUI

2005-08-03 Thread Octavian Rasnita
Hi, I have just tried Prima. It doesn't create very accessible interfaces for screen readers. However, I found that the grid control created by Prima is accessible, while I couldn't find such a control in Win32::GUI. Teddy - Original Message - From: [EMAIL PROTECTED] To:

Creating a grid control

2005-08-03 Thread Octavian Rasnita
Hi, Does anyone know if it is possible to create a grid control which is accessible using the keyboard only (no mouse)? I have tried a few examples from the Win32::GUI::Grid package, but I could select a cell only by using the mouse, but I would like to have a grid in which I can navigate using

RE: Creating a grid control

2005-08-03 Thread Doug Loud
Speaking of grid controls, is there a browser usable one? Does the CGI module have one or does one have to use a java applet? Douglass N. Loud President Integrated Information Systems, Inc. 292 Fifth Avenue New York, NY 10001 212-714-3522 (office) 203-952-7108 (cell) [EMAIL

Re: Creating a grid control

2005-08-03 Thread Hugh Loebner
Sorry, the end was truncated. Here's the whole program #--- use strict ; use Tk ; my $mw = MainWindow - new() ; my $logw = $mw - Scrolled('ROText') - pack ; my %cell ; for my $col (0 ..3){ for my $row (0 .. 5){ $cell{$col}{$row} = $logw - Label( -text =

Re: Creating a grid control

2005-08-03 Thread Hugh Loebner
Try the following short program ;-) use strict ; use Tk ; my $mw = MainWindow - new() ; my $logw = $mw - Scrolled('ROText') - pack ; my %cell ; for my $col (0 ..3){ for my $row (0 .. 5){ $cell{$col}{$row} = $logw - Label( -text = *$col $row* ,

Re: Creating a grid control

2005-08-03 Thread Octavian Rasnita
I have also tried this program but it is not what I want. I have asked if there is a Win32::GUI grid control that it is accessible from the keyboard, because there is a bigger possibility that control will be accessible for the screen readers also. Unfortunately the windows created by Tk are not

Re: [aswin32] Re: Need help with Perl GUI

2005-08-03 Thread Robert May
Jaime Teng wrote: Too bad win32::GUI does not have much documentations as well. Does anyone have a good win32::gui website or book even? What exists as formal documentation for Win32:GUI is available (as of yesterday) at http://perl-win32-gui.sourceforge.net/ We're actively working on

Re: [aswin32] Creating a grid control

2005-08-03 Thread Robert May
Octavian Rasnita wrote: Does anyone know if it is possible to create a grid control which is accessible using the keyboard only (no mouse)? I have tried a few examples from the Win32::GUI::Grid package, but I could select a cell only by using the mouse, but I would like to have a grid in which I

perl script to parse amazon!!

2005-08-03 Thread bruce
hey... i know this is probably waay off base, but has anyone run across any kind of distributed perl app to parse the book database of amazon...??? i need a seriously large database of books to test against for an app i'm working on. any suggestions.. thanks -bruce

post download process problem

2005-08-03 Thread Robb
Hi, I was wondering if someone could point me in the direction of a Perl module that I'm sure exists or possibly a design idea. I am wanting to run a script after a redirection occurs via (print Location: http://www.someplace.com/somescript.pl\n\n;;). More specifically, I want to run a

RE: perl script to parse amazon!!

2005-08-03 Thread Thomas, Mark - BLS CTR
Bruce, Search.cpan.org is your friend... http://search.cpan.org/search?query=amazon ___ Perl-Win32-Users mailing list Perl-Win32-Users@listserv.ActiveState.com To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Re: perl script to parse amazon!!

2005-08-03 Thread Octavian Rasnita
Hi, You can check search.cpan.org and search for Amazon. Net::Amazon Framework for accessing amazon.com via SOAP and XML/HTTP Net-Amazon-0.34 - 12 Jul 2005 - Michael Schilli WWW::Amazon::Wishlist grab all the details from your Amazon wishlist WWW-Amazon-Wishlist-1.4 - 07 Nov 2004 - Simon

Re: post download process problem

2005-08-03 Thread $Bill Luebkert
Robb wrote: Hi, I was wondering if someone could point me in the direction of a Perl module that I'm sure exists or possibly a design idea. I am wanting to run a script after a redirection occurs via (print Location: http://www.someplace.com/somescript.pl\n\n;;). More specifically, I