Re: [perl-win32-gui-users] GUI Builder (gb109)

2008-08-30 Thread Emmanuel E
Hi Zak, Can you please share the file once again? The 2shared.com link is not working. Can it be uploaded permanently to sourceforge? Thanks, Emmanuel - Original Message - From: zak To: perl-win32-gui-users@lists.sourceforge.net Sent: Friday, February 29, 2008 9:27 PM Subjec

Re: [perl-win32-gui-users] Window doesn't appear until code has finished

2008-04-23 Thread Emmanuel E
Title: Window doesn't appear until code has finished I think he means he wants to use threads. So that one thread can take care of the window in the foreground and another the code in the background... Ilya BANDORIN wrote: What do you mean by “in background”?   If you wi

Re: [perl-win32-gui-users] New search facility

2006-11-12 Thread Emmanuel E
This is cool! Robert May wrote: I just put together a new search function, using some new tools from google. It searches all the following places: - http://perl-win32-gui.sourceforge.net/ (DOCS, WIKI and HOMEPAGE) - SourceForge mail archives (users and hackers lists) - project CVS repository

Re: [perl-win32-gui-users] Checking for memory leaks?

2006-08-03 Thread Emmanuel E
are you already using use strict? if not use it and cleanup every warning. threads generally have all kinds of memory problems so if ur using threads life becomes very difficult. Steve Loughran wrote: Hi all Not strictly a win32-gui related question. How would I go about tracking down my me

Re: [win32gui] Re: [perl-win32-gui-users] Multi-Threaded Example

2006-02-08 Thread Emmanuel E
> The problem is how to do send messages back to the parent thread if it is > Dialog - it has to be "woken" up by a message from the windows queue - > which > is what happens in 3 above. > Do you mean to say you pass something other than window/screen updates as messages? Cos in my experience i

Re: [win32gui] Re: [perl-win32-gui-users] Multi-Threaded Example

2006-02-08 Thread Emmanuel E
Hi Everyone, I guess I've got a lot of catching up and reading to do! Rob/Jeremy, I went through the ThreadUtils code and this is what I understood: 1) Youre using a Hook to trap events/messages sent to window controls 2) These are enqueued 2) The trapped events/messages are passed onto the thre

RE: [perl-win32-gui-users] Multi-Threaded Example

2006-02-06 Thread Emmanuel E
- From: "Plum, Jason" <[EMAIL PROTECTED]> To: "Emmanuel E" <[EMAIL PROTECTED]> Sent: Saturday, February 04, 2006 12:48 AM Subject: RE: [perl-win32-gui-users] Multi-Threaded Example AH.. now then... So.. the bug involving the object being in multiple threads does in

Re: [perl-win32-gui-users] Multi-Threaded Example

2006-02-03 Thread Emmanuel E
Hi Jason, Cool stuff! But would there be a way to avoid those select calls to spend some time sleeping? I mean if there were a way to do a select on a thread queue it would be great. On the other hand why not call Win32::GUI::Dialog() in the main thread and let the child threads update the

Re: [perl-win32-gui-users] PerlApp issue

2005-12-30 Thread Emmanuel E
Rob's work sounds cool! About the threads exiting issue this is what the manual page says: - WARNINGS A thread exited while %d other threads were still running A thread (not necessarily the main thread) exited while there were still other threads running. Usually it's a good idea

Re: [perl-win32-gui-users] Re: Merging Win32::GUI and Win32::GuiTest

2005-10-07 Thread Emmanuel E
Hi Everyone, This discussion was very informative. Since there is talk of changing the module namespace anyway I was just wondering if the name could be changed to something more descriptive - like Win32::GUI::Automate or something like that? I had absolutely no idea on what GuiTest did until

[perl-win32-gui-users] Re: [perl-win32-gui-users] Using Win32::GUI events within a class or a package?

2005-09-20 Thread Emmanuel E
Thanks Jeremy. I will wait for the next release. Right now I will use a global. Emmanuel > --- Ursprüngliche Nachricht --- > Von: "Jeremy White" <[EMAIL PROTECTED]> > An: [EMAIL PROTECTED] > Kopie: perl-win32-gui-users@lists.sourceforge.net > Betreff: Re: [perl-win32-gui-users] Using Win32::GUI e

Re: [perl-win32-gui-users] Using Win32::GUI events within a class or a package?

2005-09-18 Thread Emmanuel E
Hi Jeremy, Thanks for the help. I had some trouble getting 0.558 out and installing 1.02. After that everything worked well :) I've run into a new problem now. I want to get at the window that owns the start button and modify certain other controls in it. I try to get the handle of the wind

[perl-win32-gui-users] Using Win32::GUI events within a class or a package?

2005-09-11 Thread Emmanuel E
Hi everyone, I am trying to implement a class which takes in configuration information from the user via a gui and performs various tasks based on the methods called by the user. The following is a working code snippet: package Test; use strict; use Win32::GUI; sub new { m

[perl-win32-gui-users] Can anyone tell me why tabbing works on the textfields but not onto the buttons?

2005-07-20 Thread Emmanuel E
Hi Everyone, In the following peice of code I can tab through the textfields but not onto the buttons. Ive tried -tabstop, -ok, -default -dialogui in various combinations however nothing seems to move focus onto the button called start. - use Win32::GUI; use Win32::Process; use Win32; my

[perl-win32-gui-users] Re: [win32gui] Re: [perl-win32-gui-users] SSLeay fails whe n GUI is initialized

2005-07-20 Thread Emmanuel E
Whoops real sorry guys! Its not a Win32::GUI problem. I finally traced the bug to MIME::Base64. Here is an outline of what I am trying to do. Maybe it will help understand the reason for the weird behavior better. and maybe someone will point out a better way to do it. step 1: bind to ho

Re: [win32gui] Re: [perl-win32-gui-users] SSLeay fails when GUI is initialized

2005-07-19 Thread Emmanuel E
the GUI objects and see if it makes a difference. Else Win32::CreateProcess is probably the way to go. A GUI which spawns a separate process to do the hard work. Thanks, Emmanuel - Original Message - From: "Robert May" <[EMAIL PROTECTED]> To: "Emmanuel E" <

Re: [perl-win32-gui-users] SSLeay fails when GUI is initialized

2005-07-19 Thread Emmanuel E
Yes I do enter the dialogue phase. Then when I attempt to start the socket I end the dialogue phase by returning -1; Thread or no thread the error still occurs. I was trying to spawn off a new thread in the button_Click subroutine but that new thread used to fail in the start_SSL() funtion.

[perl-win32-gui-users] SSLeay fails when GUI is initialized

2005-07-19 Thread Emmanuel E
Hi, I have written a program using Win32::GUI to provide a user-interface to a network script. However the SSL portion of the script fails if the GUI is invoked. Basically the script is like this: 1) Show UI and take parameters. 2) On UI event Create a socket. 3) Attempt to SSLify the socket us