[perl-win32-gui-users] (no subject)

2013-02-16 Thread Paul Floyd
How do I get a window's Win32::GUI::Menu object? I have a function that has the main window handle in a local variable ($Window).  I want to disable one of the items in this window's menu. Initially, I thought this would be easy, but: $Window-GetMenu(); returns a menu HANDLE, not an object

Re: [perl-win32-gui-users] (no subject)

2008-09-05 Thread Ilya BANDORIN
] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Thursday, September 04, 2008 10:40 PM To: Jeremy White Cc: perl-win32-gui-users@lists.sourceforge.net Subject: Re: [perl-win32-gui-users] (no subject) Thanks Jeremy, Unfortunately I did not want yet ANOTHER widget piled up on top

[perl-win32-gui-users] (no subject)

2008-09-04 Thread David_Keith
OK... Asking again, someone please answer, even if it's There is no fix at the time. After enabling the new WinXP style UI, Labels on a Tab Strip have the default 'grey' color on a 'white/silver' Tab Strip, How can I fix this, it looks UGLY and is not acceptable for a production application.

Re: [perl-win32-gui-users] (no subject)

2008-09-04 Thread Jeremy White
on the child window. Works for both XP and Vista. Cheers, Jeremy. To: perl-win32-gui-users@lists.sourceforge.net From: [EMAIL PROTECTED] Date: Thu, 4 Sep 2008 12:05:24 -0400 Subject: [perl-win32-gui-users] (no subject) OK... Asking again, someone please answer, even

Re: [perl-win32-gui-users] (no subject)

2008-09-04 Thread David_Keith
Thanks Jeremy, Unfortunately I did not want yet ANOTHER widget piled up on top of the TabStrip :) so I ended up using -foreground = [252, 252, 252] for each offending control. I also had to revert from using the -prompt option of TextFields to using a TextField with a label instead. the

[perl-win32-gui-users] (no subject)

2006-03-06 Thread Gowtham Prabu
Hi Need Help !! I have created one small GUI based application through Win32::GUI through Cygwin - perl on Windows. I want to create an EXE file or setup file to install it on windows as what we do for other applications for VB. Kindly let me know is there any way to acheive this.

RE: [perl-win32-gui-users] (no subject)

2006-03-06 Thread Chris Wearn
@lists.sourceforge.net Subject: [perl-win32-gui-users] (no subject) Hi Need Help !! I have created one small GUI based application through Win32::GUI through Cygwin - perl on Windows. I want to create an EXE file or setup file to install it on windows as what we do for other applications

Re: [perl-win32-gui-users] (no subject)

2006-03-06 Thread Reini Urban
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Gowtham Prabu Sent: Monday, 6 March 2006 6:43 PM To: Subject: [perl-win32-gui-users] (no subject) I have created one small GUI based application through Win32::GUI through Cygwin - perl on Windows. I want to create

[perl-win32-gui-users] (no subject)

2005-08-15 Thread Sergey Cherniyenko
Hello, perl-win32-gui-users, How can I turn on debugging in Win32::GUI to get some descriptive output to console. In modules I've seen that can be done. How? -- Best regards, Sergey mailto:[EMAIL PROTECTED]

[perl-win32-gui-users] (no subject)

2005-08-08 Thread Сергей Черниенко
Здравствуйте, perl-win32-gui-users, I'm using NotifyIcon object to minimze my app to tray. All works fine but the icon in tray has grey color instead of its real purple. The questions are: 1. What format has to have icon (size, number of colors and so on) 2. may be I

Re: [win32gui] [perl-win32-gui-users] (no subject)

2005-08-08 Thread Robert May
Сергей Черниенко wrote: Здравствуйте, perl-win32-gui-users, I'm using NotifyIcon object to minimze my app to tray. All works fine but the icon in tray has grey color instead of its real purple. The questions are: 1. What format has to have icon (size, number of colors and so

[perl-win32-gui-users] (no subject)

2004-05-10 Thread marciton
it's work , thanks Try: -addexstyle = WS_EX_TOPMOST - Original Message - From: marc iton [EMAIL PROTECTED] To: Perl-Win32-GUI-Users@lists.sourceforge.net Sent: Monday, May 10, 2004 1:18 PM Subject: [perl-win32-gui-users] Always on top ... Hi, there is a way to set a win32gui

Re: [perl-win32-gui-users] (no subject)

2004-01-16 Thread Jez White
to the lists and see what reaction there is? cheers, jez. - Original Message - From: Glenn W Munroe [EMAIL PROTECTED] To: perl-win32-gui-users@lists.sourceforge.net Cc: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Thursday, January 15, 2004 9:52 PM Subject: [perl-win32-gui-users] (no subject

[perl-win32-gui-users] (no subject)

2003-07-11 Thread tivolinewbie
Thanks for your reply. I call Autosize at a few places in the code, so I guess maybe that's the cause, I will have to recheck. By the way I think your attached sample didn't show up in the message, perhaps again its being removed by the listserver. It might be better just to cut and paste it

Re: [perl-win32-gui-users] (no subject)

2002-10-17 Thread Johan Lindstrom
At 09:02 2002-10-16 -0700, Rodriguez, Peter wrote: I do not have a 'C' compiler on the NT machine I need to run perl on. I downloaded the NT executables for 5.8 from cpan. Is there a similar distribution for the GUI interface? Not for 5.8. ActiveState haven't released a Perl 5.8 yet, and the

[perl-win32-gui-users] (no subject)

2002-08-09 Thread Eric Hansen
Has anyone written a business application for order entry, inventory management, accounting? I would like to find one written in GUI Perl with source code so I can make any customizations I may need. Thanks!! Eric _ Send and

[perl-win32-gui-users] (no subject)

2002-04-16 Thread Guillem Cunillera Wefers
How can be force that one Window is always over an other ?, without having to disable the second one. I'm going to end my actual program in few days and I hope that few questions you will see Regards from Catalonia, Guillem Cunillera i Wefers

Re: [perl-win32-gui-users] (no subject)

2002-04-16 Thread Sean Healy
How can be force that one Window is always over an other ?, without having to disable the second one. I'm going to end my actual program in few days and I hope that few questions you will see Well, the -topmost = 1 option allows the window to stay on top - but it will also be on top of

RE: [perl-win32-gui-users] (no subject)

2002-04-16 Thread Guillem Cunillera Wefers
-topmost is not good for me because I can't see for instance some DialogBox... You could also use the Activate event of the window beneath to set the focus to the window on top, but then you wouldn't be able to do anything in the window beneath, which would defeat the purpose of not disabling it.

RE: [perl-win32-gui-users] (no subject)

2002-04-16 Thread Guillem Cunillera Wefers
-win32-gui-users@lists.sourceforge.net Fecha: dimarts, 16 / abril / 2002 15:54 Asunto: RE: [perl-win32-gui-users] (no subject) -topmost is not good for me because I can't see for instance some DialogBox... You could also use the Activate event of the window beneath to set the focus to the window

RE: [perl-win32-gui-users] (no subject)

2002-04-16 Thread Guillem Cunillera Wefers
RE: [perl-win32-gui-users] (no subject)It works ...but then DialogBox goes beneath my other Windows... Guillem Cunillera i Wefers. -Mensaje original- De: Peter Eisengrein [EMAIL PROTECTED] Para: 'Guillem Cunillera Wefers' [EMAIL PROTECTED]; perl-win32-gui-users

RE: [perl-win32-gui-users] (no subject)

2002-04-16 Thread Guillem Cunillera Wefers
Well, firstly I'm very glad for all the indications that I receive from everybody.If it was possible I will pay a beer to everybody.or more than one in more than one case :) $win-btnHide()-SetFocus(); #fails on run-time, btnHide? I'm going to include the event that is sorrounding my

[perl-win32-gui-users] (no subject)

2002-03-28 Thread Joseph H. Schwendt II
I'm not sure if people are developing apps on Windows XP yet, but when I tried to use one of my apps developed in Win2K on a WinXP box, all of the grey background turned white, but all of the controls stayed grey. Essentially, the app looked ugly. Has anyone else experienced this and if so,

RE: [perl-win32-gui-users] (no subject)

2002-02-27 Thread Ultimate Red Dragon
PROTECTED] Sent: Saturday, February 23, 2002 12:58 PM To: perl-win32-gui-users@lists.sourceforge.net Subject: [perl-win32-gui-users] (no subject) Has anyone written/know how it could easily be done, a WYSIWYG HTML editor using a RichEdit field? It doesn't need to do much, just links, bold

Re: [perl-win32-gui-users] (no subject)

2002-02-24 Thread Johan Lindstrom
At 12:57 2002-02-23 -0500, Ultimate Red Dragon wrote: Has anyone written/know how it could easily be done, a WYSIWYG HTML editor using a RichEdit field? It doesn't need to do much, just links, bold, italics, underline. RichEdit accepts RTF (Rich Text Format), så an HTML 2 RTF converter

Re: [perl-win32-gui-users] (no subject)

2002-02-24 Thread Johan Lindstrom
At 12:57 2002-02-23 -0500, Ultimate Red Dragon wrote: Has anyone written/know how it could easily be done, a WYSIWYG HTML editor using a RichEdit field? It doesn't need to do much, just links, bold, italics, underline. Reading my answer I understand you asked the quite opposite from what I

[perl-win32-gui-users] (no subject)

2002-02-23 Thread Ultimate Red Dragon
Has anyone written/know how it could easily be done, a WYSIWYG HTML editor using a RichEdit field? It doesn't need to do much, just links, bold, italics, underline. Also, does anyone know why, in multiline RE fields at least, if you just keep hitting enter your cursor goes off the edit window

Re: [perl-win32-gui-users] (no subject)

2002-02-23 Thread Sean Healy
Also, does anyone know why, in multiline RE fields at least, if you just keep hitting enter your cursor goes off the edit window and you have to scroll down manually? Is there a way to make it focus on the cursor automatically? A solution to this has been posted before, and someone may hvae a

[perl-win32-gui-users] (no subject)

2001-10-29 Thread e5485630
I am new in Perl, My question is: I want to separate the diferent windows in different files, then, how I have to do it if I want that one event can change some properties of another window ? One example talks more 1000 words a lot of thanks ! Guillem Cunillera i Wefers

Re: [perl-win32-gui-users] (no subject)

2001-09-30 Thread Mark Wilkinson
menu command and $menu-{CID}-Enabled(1); reenables it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, September 27, 2001 12:18 AM To: perl-win32-gui-users@lists.sourceforge.net Subject: [perl-win32-gui-users] (no subject) I've got 2

RE: [perl-win32-gui-users] (no subject)

2001-09-27 Thread Frazier, Joe Jr
PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Thursday, September 27, 2001 12:18 AM To: perl-win32-gui-users@lists.sourceforge.net Subject: [perl-win32-gui-users] (no subject) I've got 2 questions... In a listview control, is there a way I can select *all* of the items in the control? Along those same

[perl-win32-gui-users] (no subject)

2001-06-18 Thread Erick Bourgeois
Hi all, I have finally finished the Perl Code Exchange application I was building. You can now either cut and paste a code snippet or upload a script (or a binary). You may find it at www.jeb.ca/cgi-bin/exchange/display.cgi or the upload page may be found at