[perl-win32-gui-users] .

2013-06-15 Thread Alex Lee
Kimberlie vwoman http://mavin21c.dothome.co.kr/dor-oldy-1.php?emikjzaktheme=ffds3lisyqypik -- This SF.net email is sponsored by Windows: Build for Windows Store. http://p.sf.net/sfu/windows-dev2dev

[perl-win32-gui-users] screensaver with perl

2007-09-21 Thread Alex Lee
Hi all: Lately Ive been searching for a simple screensaver that can display time and date with BIG text. Windows has a text version but it only displays time. Since PERL is so robust I am wondering if there is a simple way to write and compile a simple screensaver with PERL? Nothing fancy just

[perl-win32-gui-users] image view

2006-05-22 Thread Alex Lee
Hi, can anyone tell me what the easiest way to have an application display a jpeg image file? Iam thinking of using Axwindows but I don't even know what activeX to use and I really dont want to use IE -- basically it would be nice to have a list of files on one side and have the image display

[perl-win32-gui-users] window control

2005-12-28 Thread Alex Lee
Dear all: Have a couple of questions, and was wondering if someone can help me out. 1) Don't know if I am phrasing this correctly, but is there a way to create a window that stays open all the time, regardless of what is happening? For example I would like to create a windows that locks itself on

Re: FW: [perl-win32-gui-users] Website - Code snippets gallery

2004-11-23 Thread Alex Lee
I think you guys are right. There probably is a very limited market, but on the other hand I think a book itself will generate publicity. This is how I see it as and why i think publishing is useful. 1a) the book would generate is own publicity and with this some legetimicy - thus I think it

[perl-win32-gui-users] Alex, Alex Lee has invited you to open a Google mail account

2004-06-24 Thread Alex Lee
HI I am sending google gmail to win32 gui post. Thanks for all the help in the past guys. I can send more depending on the reponse. --- Alex Lee has invited you to open a free Google Gmail account. The invitation will expire

Re: [perl-win32-gui-users] Disabling Grid

2004-06-15 Thread Alex Lee
Hi, try Grid-Hide; this works for me! al --- [EMAIL PROTECTED] wrote: Hello perl-win32-gui-users, I am trying to disable Win32::GUI::Grid. changing -visible and -enable to 0 with subsequent repainting window dont disable Grid. please see my script below: use strict; use warnings;

Re: [perl-win32-gui-users] Setting individual item properties

2004-02-20 Thread Alex Lee
Hi Jonathan: I find that win32 grid is more powerful and easier to use -- you can use it like ListView and have for example, each row to alternate colors. Example code would look something like this: for my $row (0..$Grid-GetRows()) { for my $col (0..$Grid-GetColumns()) {

Re: [perl-win32-gui-users] help with Win32::GUI::Grid

2004-02-15 Thread Alex Lee
Thanks Laurent: new module works great! = ** * END OF MESSAGE * __ Do you Yahoo!? Yahoo! Finance: Get your refund fast by filing online. http://taxes.yahoo.com/filing.html

[perl-win32-gui-users] help with Win32::GUI::Grid

2004-02-13 Thread Alex Lee
Dear group: just wondering if anyone can help me with the win32-gui-grid module. When I select cells in the grid and push ctrl C to copy the text, I keep getting this error message: coinitilaization has not been called. I even tried linking an event and calling a copy method like so:

RE: [perl-win32-gui-users] real-time output

2004-02-12 Thread Alex Lee
Pick [EMAIL PROTECTED] wrote: Hi, Try calling Win32::GUI::DoEvents after each output update. This performs one GUI event tick and returns immediately afterwards. Steve -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Alex Lee Sent: 12 February

[perl-win32-gui-users] real-time output

2004-02-11 Thread Alex Lee
Dear group: Just wondering if someone knows how I can output text in real-time through some kind of control (i.e lable textfield). for example: foreach(0..10){ output somewhere (label) sleep 1; } # When I try this it waits

[perl-win32-gui-users] menu highlighting

2003-09-29 Thread Alex Lee
Dear list memembers: Does anyone know if it is possible to change the highlight color of a menu? For example instead of using the standard default (dark blue) when a user scrolls down the memu, changing it to light green instead? Below is a sample of typical menu. $menu = new

Re: [perl-win32-gui-users] LWP + Fork + Win32::GUI

2002-10-17 Thread Alex Lee
Did you try using: Win32::Shell::Execute instead of fork. I had a lot of problem with fork under win32 in the past and finally found this little gem. Alex ;) = ** * END OF MESSAGE * __ Do you Yahoo!? Faith

[perl-win32-gui-users] alternating backcolor for listview

2002-08-20 Thread Alex Lee
Hi does anyone know how to change the backcolor for a specific index in listview. I basically want to alternate colors of each row. Currently I use the TextBkColor([color]) function, but that would always change every row color to the last color I specify. example blue, green, blue -- would

RE: [perl-win32-gui-users] Re: Outlook day control (Jake Skinner)

2002-05-13 Thread Alex Lee
you please kindly tell me where I can find the ppd of Win32::GUI::AxWindow? Thanks, David -Original Message- From: Alex Lee [mailto:[EMAIL PROTECTED] Sent: Saturday, May 11, 2002 12:54 PM To: perl-win32-gui-users@lists.sourceforge.net Cc: [EMAIL PROTECTED] Subject: [perl-win32

Re: [perl-win32-gui-users] How to clean a window from previous dinamic labels ?

2002-05-07 Thread Alex Lee
hi, not sure what you mean, but you can use the show function to hide/show certain controls in a window. for example: $Win-labelOne-Show('SW_HIDE'); when you want to use it again, simply use Show(); Now if you use a while loop are some derivative of that nature to deriver your controls,

[perl-win32-gui-users] Extracting and displaying Icon

2002-05-05 Thread Alex Lee
Hi all, Iam trying to extract an icon from a dll file like such: code my $A = 0; my $B = 'shimgvw.dll'; ## I want icon 1 in this dll file my $apiExecute = new Win32::API(Shell32, ExtractIcon, ['P','P','N'], 'N'); my $hIcon= $apiExecute-Call($A,$B,1); The problem is that

[perl-win32-gui-users] List View-getting multiple selection indexes

2002-04-23 Thread Alex Lee
of the selected items. for example if I have a listView of: pear apple peach nuts and if the user highlights pear and apple with their mouse,I would like retrieve the indexes of 0 and 1, thereby allowing me to know that apple and peach was selected. Thanks in advance! Alex Lee