Re: [perl-win32-gui-users] RichEdit colors reseting

2006-02-22 Thread Sky Blueshoes
I found the solution to both of these problems, although I found another one. First my solutions... To solve the scroll problem I had to add the -style option to the creation of my RichEdit widget and I also had to include the following line in my display sub: $display->SendMessage(0x115, 1,

[perl-win32-gui-users] RichEdit colors reseting

2006-02-22 Thread Sky Blueshoes
I have a RichEdit widget in which I use as a display to my program. I created a sub in which I call whenever I want to display something: sub display { my @input = @_; for (0..$#input) { $display->Select(1e9, 1e9); $display->ReplaceSel("$input[$_]\r\n"); } } Ok, now I hav

Re: [perl-win32-gui-users] A slightly OT question, how to create an icon on the fly

2006-02-22 Thread Octavian Rasnita
From: "Plum, Jason" <[EMAIL PROTECTED]> > Remember, you're using perl. Technically speaking *anything* can be done > :p BTW, if "anything" can be done, I am interested if there is a way of creating an mp3 player in perl that doesn't need another program for communicating with the sound card. How

RE: [perl-win32-gui-users] A slightly OT question, how to create an icon on the fly

2006-02-22 Thread Brian Millham
You're right, it's perl, so it can be done :-) I'm also a strong believer in the perl methodology (mentioned several times in the Camel book) of laziness :-) I'd like to avoid using a icon file (except maybe a template file), because I think that I would end up with way to many discrete icon file

RE: [perl-win32-gui-users] A slightly OT question, how to create an icon on the fly

2006-02-22 Thread Plum, Jason
Remember, you're using perl. Technically speaking *anything* can be done :p I'm sure one of the more accustomed BitmapInline people can set you up. Either by creating the image or by loading the icon from a file, this can be done. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

[perl-win32-gui-users] A slightly OT question, how to create an icon on the fly

2006-02-22 Thread Brian Millham
Hi all, I'd like to be able to have an icon (displayed in the system tray) that is created "On the fly". Something like the W2K/XP task manager icon, but with text indicating the percentage overlaid. I know that I could do this by creating 100 discrete icons, but what a pain this would be. (Actua