RE: [perl-win32-gui-users] notifyicon tip limit

2003-03-12 Thread work
> I do not know about the character limit, however, when I first started > playing with changing tips, I *HAD* to included the id to get it to > work. Try changing this > >> $Window->NI->Modify( -tip => $tip); # line 30 > > to this : > > $Window->NI->Modify( -id => 1, -tip => "Something" ); # or w

RE: [perl-win32-gui-users] notifyicon tip limit

2003-03-12 Thread Frazier, Joe Jr
>my $ni = $Window->AddNotifyIcon( > -name => "NI", > -id => 1, > -icon => $icon, > -tip => "Scheduler Status Unknown" >); > > $tip = > '333634'; > print length $tip; > I do not know about the character limit, however, when I fir

[perl-win32-gui-users] notifyicon tip limit

2003-03-12 Thread work
When changing the tip of a notifyicon item perl crashes if the tip is more than 65 chars. Is this a known limit or a bug? Or has no one else tried to make a tip that big :) I am on w2k, Activeperl 629(5.6.1),GUI 0.0.558. Also, in the following example I get a 'Modification of a read-only value

RE: [perl-win32-gui-users] Suppressing task bar button

2003-03-12 Thread Hoff
Using a parent window that is never shown does indeed avoid a task entry in the task bar. Thank you Glenn. > -Original Message- > From: Glenn Linderman [mailto:[EMAIL PROTECTED] > Sent: Wednesday, March 12, 2003 12:28 PM > To: Hoff > Subject: Re: [perl-win32-gui-users] Suppressing task ba

[perl-win32-gui-users] Suppressing task bar button

2003-03-12 Thread Hoff
My script uses a system tray icon but also makes a blank button in the task bar. Can this button be hidden? TIA