Re: [perl-win32-gui-users] Avoid the appearance of a "frozen"

2008-06-19 Thread Charles Alderman
To clarify my earlier comment: DBI is considered threadsafe but some of the DBD's are not. Here's more info: http://search.cpan.org/~timb/DBI/DBI.pm#Threads_and_Thread_Safety As far determining which modules are or are not threadsafe, read the perldocs! Thanks, Charle

Re: [perl-win32-gui-users] Avoid the appearance of a "frozen" window

2008-06-18 Thread Charles Alderman
gui application. And this was the quickest, best way for me to get my code out the door... :) Thanks, Charles Alderman - Check out the new SourceForge.net Marketplace. It's the best place to buy or

Re: [perl-win32-gui-users] Avoid the appearance of a "frozen" window

2008-06-18 Thread Charles Alderman
running and in use for more than 18 months now. Create and layout the window before spawning a new process/thread, as both pseudo processes can use the same gui handles. After the thread/fork instantiate the non threadsafe modules. (Like opening a DBI connection). Thanks, Charles Alder

Re: [perl-win32-gui-users] Need to post progress

2008-04-03 Thread Charles Alderman
Hello, You could try using a Win32::GUI::Textfield with multiline, autovscroll and readonly enabled. Set it to the right size with width and height, and update the text with Append() ($tf->Append('foo') )... Charles Alderman - Original Message - From: Jacques Choq

Re: [perl-win32-gui-users] Port Perl from Unix to Windows

2008-01-24 Thread Charles Alderman
k out File::Copy or the Perl builtins opendir and readdir (use DirHandle for a more OOP way to do it). Or you could use "ExtUtils::Command" and keep only the unix style commands. Thanks, Charles Alderman Quoting Charles Alderman <[EMAIL PROTECTED]>: > http://perldoc.

Re: [perl-win32-gui-users] Port Perl from Unix to Windows

2008-01-24 Thread Charles Alderman
e any other questions regarding running Perl under windows or unix, they would be better addressed in a different mailing list. Activestate hosts a bunch like perl-win32-users or perl-unix-users. See: http://aspn.activestate.com/ASPN/Perl/Mail/ Thanks, Charles Alderman Quoting Gary Yang

Re: [perl-win32-gui-users] strange gui behaviour

2007-03-20 Thread Charles Alderman
e startup of your script). When you later call verify, (1) show the window, (2) enter the Dialog, (3) handle user input, (4) exit the dialog, (5) then hide the window. Good Luck, Charles Alderman Quoting luksedj the first <[EMAIL PROTECTED]>: Hello, I'm just starting to use Wi

Re: [perl-win32-gui-users] image erased outside of the window border

2007-01-09 Thread Charles Alderman
the image on a Resize event). Thanks, Charles Alderman Quoting Guojun Yang <[EMAIL PROTECTED]>: Hi, all, I print a graphic on a window, but when I resize the window smaller than the image the image content outside of the window frame is gone even after I size it back to the orig

Re: [perl-win32-gui-users] Multi threaded Win32: :GUI app and the DBI (DBD: :mysql)

2007-01-08 Thread Charles Alderman
Wow, I didn't realize my perl was so out of date. I thought I'd installed the latest version this June, but it turns out I had a 2+ year old version. So, the easy solution is to install 5.8.8. That fixes the DBI, threads issue. Thanks, Charles Alderman Quoting [EMAIL PROTEC

[perl-win32-gui-users] Multi threaded Win32::GUI app and the DBI (DBD::mysql)

2007-01-05 Thread Charles Alderman
DBD::mysql - 3.0002 perl - v5.8.4 built for MSWin32-x86-multi-thread (ActiveState binary build 810). The modules were installed from the ActiveState PPM2 Repository. MySQL server - 5.0 Well, I hope this can help someone. I'd love to hear any questions or comments. Thanks,