Re: [perl-win32-gui-users] my labels are only shown after clicking an them or resizing the window

2007-11-10 Thread Robert May
On 26/09/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I've the problem that my labels are only shown after clicking on them > or after resizing the window. > do I have to implement a repainting or something? No, but you have to process the event queue somewhere in your code. You example is

Re: [perl-win32-gui-users] How to wait for a Dialogbox to continue the program?

2007-11-10 Thread Robert May
On 26/09/2007, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > I want to make an input with a dialogbox. > but I've the problem that the program continues while the dialogbox is > open. > > how can i make the script waiting for closing the dialogbox? As you haven't posted a *short* and *complete* e

Re: [perl-win32-gui-users] Listview mental block

2007-11-10 Thread Robert May
On 19/09/2007, Brian Rowlands (Greymouth High School) <[EMAIL PROTECTED]> wrote: > I've used TheLoft to create a gui interface for a program I'm writing. A > button I click is meant to read a selected line from a listview pane and > display the results in a selection of tf / cb controls: > > #

Re: [perl-win32-gui-users] Kbd Fires Click Twice for Radiobuttons, Why?

2007-11-10 Thread Robert May
On 06/09/2007, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote: > Hi list, > I think I might have found a bug in the event handling of Radio Buttons, > or else have just somehow misunderstood how their event handling works. > EIther way, I'd appreciate any comments and clarifications. > > Issue: > > if

Re: [perl-win32-gui-users] HighRes Timing and Sleep in GUI MIDI Apps

2007-11-10 Thread Robert May
On 06/09/2007, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote: > How good is the Win32::GUI timer for semi realtime applications? Pretty much useless. The underlying mechanism (using the WM_TIMER message) has no guarantees on accuracy, and if the application is processing many messages delivery of W

Re: [perl-win32-gui-users] FindWindow and SendMessage

2007-11-10 Thread Robert May
On 16/08/2007, Perl Rob <[EMAIL PROTECTED]> wrote: > Well, I answered my own question, so I thought I'd post the answer > in case it helps someone else who wants to close a window in this > manner. Turns out I had to create a quoted word list and add > WM_CLOSE to it (as a part of my "use Win32::GU

Re: [perl-win32-gui-users] Method for Clicking Menu Items?

2007-11-10 Thread Robert May
On 10/08/2007, Veli-Pekka Tätilä <[EMAIL PROTECTED]> wrote: > Is there a method I can call to programmatically click a menu item? I'm > planning on calling it in the Ctrl+N handler in my accelerator table. Not that I'm aware of. > I guess I could call the underlying subs that my menu items call,