[perl-win32-gui-users] Re: CALL FOR BUGS

2003-04-13 Thread Glenn Linderman
Hi Aldo, The next two paragraphs are kind of "pie in the sky" or "dream concepts"... but after them are some bug reports... Glad to see you back and working on Win32::GUI. I've been contemplating either (1) trying to fix and enhance it myself or (2) replacing it with something perhaps simp

RE: [perl-win32-gui-users] Timer-Object-Question

2003-04-13 Thread Iain Whyte
You could easy work around it - use a global to skip execution of the code in your _Timer subroutine every second time it runs i.e.: Sub MyTimer_Timer { $count ++; if (($count % 2) == 1) { # do Timer code here } } Not nice, but neither is DoEvents running e

Re: [perl-win32-gui-users] Timer-Object-Question

2003-04-13 Thread Christian Kappler
Hello Sean, On Friday, April 11, 2003 3:40 PM, "Sean Healy" <[EMAIL PROTECTED]> wrote: > >I found that the _Timer subroutine was called twice in succession every > >second. What is it I am doing wrong? > > Are you by any chance using Win32::GUI::DoEvents in a loop instead of > Win32::GUI::Dialog?

Re: [perl-win32-gui-users] Timer-Object-Question

2003-04-13 Thread Christian Kappler
Hello Peter, On Friday, April 11, 2003 2:02 PM, "Peter Eisengrein" <[EMAIL PROTECTED]> wrote: > You've set up the _Timer properly. Perhaps you can share some more code? > > Also, you never finished your DialogBox question. Sorry about this with the unfinished question. I will ask it now again, b