[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

Re: [perl-win32-gui-users] PPM distro for 64-bit PERL v 5.14

2012-02-17 Thread Alex Lee
Jeremy, On second thought I did find a freshly minted blib folder - I think I will try package this manually into a tar.gz file. thanks. Alex On Fri, Feb 17, 2012 at 10:08 AM, Alex Lee wrote: > Thanks Jeremy. > You were right about the repository. > I was able to to install the module w

Re: [perl-win32-gui-users] PPM distro for 64-bit PERL v 5.14

2012-02-17 Thread Alex Lee
Thanks Jeremy. You were right about the repository. I was able to to install the module with dmake - there were some error messages but seem to work! In particular the Grid & axwindow seem to need msvc instead. Although I was able to install with dmake I could not get it to generate a proper ppm d

[perl-win32-gui-users] PPM distro for 64-bit PERL v 5.14

2012-02-16 Thread Alex Lee
Hi all: does anyone have a PPM distribution (Win32::GUI) that can run on v 5.14 64-bit? I tried creating this myself with the source 1.06 but so far it is not working. Thank you very much for your help in advance! Alex -

[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 disp

Re: [perl-win32-gui-users] image view

2006-05-22 Thread Alex Lee
thanks everyone for you help. I will try it and see how it turns out! al ;) On 5/22/06, darrik <[EMAIL PROTECTED]> wrote: >> 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

[perl-win32-gui-users] image view

2006-05-21 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 its

[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-28 Thread Alex Lee
Thank you all for the support so far! I am currently putting together an outline and would shortly email those who are interested. The initial step is to see what we want to put in and just as importantly -- what we want to leave out! Your input would be greatly appreciated. Holiday and work is rea

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 would

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

2004-11-22 Thread Alex Lee
Hi all: I think win32::gui cookbook is a great idea. Has anyone even think about trying to officially publish it. I don't mind putting out the money for self-publish I-universe type book and split the profit! ;) I can actually submit a few examples mysef. Please let me know if anyone is interested

[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; > us

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
tephen 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] > &g

[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 u

[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 Win32::GUI::Men

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 Hi

[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 se

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

2002-05-13 Thread Alex Lee
wrote: > Hi Alex, > > Can 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-gu

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

2002-05-11 Thread Alex Lee
Hi Jake, >or has some ideas as to were to start If you are trying to embed an ActiveX controller then try using this module: http://perso.club-internet.fr/rocherl/AxWindow.html It lets you host an ActiveX controller in Win32::Gui. Very simple to use, And it works!! Just search through your reg

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, y

[perl-win32-gui-users] imagelist and icon format

2002-05-06 Thread Alex Lee
Hi, does anyone know if there is a way to load an icon into a image list like such, without first converting it to bitmap format with DIBitmap: ## code my $IL = new GUI::ImageList(16, 16, 24, 5, 10); $IL->Add('foo.ico'); tried but image did not work. thanks in advance. Alex ;) =

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

2002-05-06 Thread Alex Lee
Hi, I try doing what you said: my $dib = newFromBitmap Win32::GUI::DIBitmap ($hIcon) or die "no $!"; and it did not work (died)--do you know of any oher way? thanks. Alex ;) --- Laurent ROCHER <[EMAIL PROTECTED]> wrote: > Alex Lee wrote: > > I tried DIBitmap but

[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 th

RE: [perl-win32-gui-users] List View-getting multiple selection i ndexes

2002-04-23 Thread Alex Lee
gt; { > # do something with each item > } > > Jeff Colwell > No electrons were harmed in making this e-mail message. > > > -Original Message- > From: Alex Lee [mailto:[EMAIL PROTECTED] > Sent: Tuesday, April 23, 2002 2:55 PM > To: perl-win32-gui-user

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

2002-04-23 Thread Alex Lee
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

[perl-win32-gui-users] richedit

2001-05-25 Thread Alex Lee
Hi All: Does anyone know how to print out the sentence below in a richedit control: 'see the fox jump' the word 'jump' is bold and is also green, while the rest of the text is just plain black. Thanks in advance. Alex :) = ** * END OF MESSAGE *