Re: [perl-win32-gui-users] Win32::GUI::Scintilla V1.08

2006-05-30 Thread Octavian Rasnita
Hi, Will the new version of Win32::GUI::Scintilla be based on the latest version of Scintilla? I have seen that now Scintilla is very accessible for screen readers, but the older version which is used on the actual version of Win32::GUI::Scintilla is not accessible at all. Thank you. Teddy Fro

Re: [perl-win32-gui-users] Need an example, please.

2006-05-30 Thread Kevin L. Gross
Thanks for the suggestion. I tried it and it works...sort of. First off, it is painfully slow. Takes a couple of minutes for a small file (2K) to display, one line at a time. This can't be normal for Perl on Windows can it? Second, no scroll box, even tho the -multiline and -autovscroll paramet

Re: [perl-win32-gui-users] Need an example, please.

2006-05-30 Thread darrik
My suggestion: my $output; # possibly declare this globally further up... > my $infile="/Documents and Settings/Kevin/Desktop/Stuff/Perl/samplegui2.pl"; $output.="Processing infile..."; $textfield->Text($output); > open INFILE, "<$infile" or die "open infile error: $! File: $infile"; > my $

[perl-win32-gui-users] Need an example, please.

2006-05-30 Thread Kevin L. Gross
Hi, I'm trying to write a prog that eventually uses checkboxes and a button to run small perl scripts and display the results. I appreciate any help or pointers, I'm using ActiveState5.8 (the latest). Whenever a checkbox is selected and the button is pressed, I'd like the results to flow into a t