RE: [perl-win32-gui] Advice Wanted Re Design Of A GUI Wizard App

2000-03-20 Thread Joel Filipe Campos Oliveira
Anyone in the list can send to me a compiled version of the PerlQT for AS. Thanks, Joel Oliveira

RE: [perl-win32-gui] Advice Wanted Re Design Of A GUI Wizard App

2000-03-20 Thread Joel Filipe Campos Oliveira
How about PerlQT? - native look and feel of OS and runs under X and Windows. I think QT is the widget toolkit used by the Linux KDE desktop. It's possible to install with ppm? Joel Oliveira

RE: [perl-win32-gui] insert something into a RichEdit field

2000-03-20 Thread timothy . b . thomas
can someone tell me how to add a hard return to this (new line) (in a richedit object) I have tried: $Window-Schreibfeld-Text($Window-Schreibfeld-Text . "body/body\n"); $Window-Schreibfeld-Text($Window-Schreibfeld-Text . "body/body\r\n");

[perl-win32-gui] system tray icon

2000-03-20 Thread Hoff Miller
This sets the icon correctly to tool.ico: my $icon = new Win32::GUI::Icon("tool.ico"); $trayicon = $Window-AddNotifyIcon(-name = "TrayIcon", -id=1,-icon = $icon, -tip = "$title"); Now, I'd like to change the icon based on a timer in the program. I can change the window's icon but not the

[perl-win32-gui] Re: ActivePerl 5.6(RC1) and Win32-GUI

2000-03-20 Thread Robert White
From: "Cam" [EMAIL PROTECTED] I was just wondering if anyone else has had problems with AP 5.6 (Build 611). works fine except for the broken parts :-) I installed it this morning, and everything seem to be working fine. However when I tried to install Win-GUI via PPM it came back

[perl-win32-gui] ActivePerl 5.6(RC1) and Win32-GUI

2000-03-20 Thread Cam
Hello, I was just wondering if anyone else has had problems with AP 5.6 (Build 611). I installed it this morning, and everything seem to be working fine. However when I tried to install Win-GUI via PPM it came back and said the following: Error installing package 'Win32-GUI' : Could

Re: [perl-win32-gui] Advice Wanted Re Design Of A GUI Wizard App

2000-03-20 Thread David Hiltz
From: David Hiltz Have you evaluated using Perl/Tk? Maybe it's just me but I can't get perltk stuff to run with perl2exe ... One thing that Tk has which Win32-GUI doesn't is the ability to position (pack) controls on a form, or at least have a provisional go. I dare say I wont be the

Re: [perl-win32-gui] system tray icon

2000-03-20 Thread Cam
Hello Hoff, I wasn't able to come up with a way to change the icon in the system tray. My solution was to kill off the current tray icon and create a new one whenever it need to be changed. In order to get this to work properly I had to assign an "id" to each one, and increment it so that

RE: [perl-win32-gui] ActivePerl 5.6(RC1) and Win32-GUI

2000-03-20 Thread timothy . b . thomas
I haven't installed AS Perl 5.6 yet, but do you have Jenda's repository setup? (http://jenda.mccann.cz/perl/) - Tim Thomas Unix Systems Administrator Lockheed Martin EIS ยท Denver Data Center

Re: [perl-win32-gui] system tray icon

2000-03-20 Thread Hoff Miller
Thank you Cam. Your solution will work fine in one of my applications, where the icon changes are infrequent. If the changes are too often, there's objectionable flicker on the taskbar when it shrinks for the deleted icon and grows back for the next icon. Thanks again for your help. Hoff