Re: [perl-win32-gui-users] Re: Attaching to a window created by some

2005-10-07 Thread gwm
Glenn L., Base on Rob's post yesterday, I took this a little further. By using something like this in the main thread: use threads::shared; use Data::Dumper; my $szMW : shared; my $obMW = [... window definition ...] $szMW = Dumper($obMW); Then in the thread: my $VAR1; my $obMWCopy = eval ($

[perl-win32-gui-users] Richedit - Unicode UCS2

2005-10-07 Thread Chris Wearn
I am working with UCS2 encoded strings: eg 3114 3116 3127 3119 (Chinese in this case). Is there a way of converting or encoding these pairs, to show their Unicode characters in a Richedit control? The obvious, my $string = pack ("U*", 0x3114, 0x3116, 0x3127, 0x3119); $re->Text($string); Does

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: Attaching to a window created by some other

2005-10-07 Thread Robert May
Jeremy White wrote: Coincidentally, I've been working on a similar problem and was very interested For example: my $win=Win32::GUI::Window::CreateFromHandle($handle); $win->Show; #no problem $win->Hide; #no problem $win->SomeControl->Show(); #how would we know a control called 'SomeContol' ex

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

2005-10-07 Thread Robert May
Piotr Kaluski wrote: 1. Win32::GUI team has a look on what is implemented in Win32::GuiTest. Have a look on the manual. It is up to date: http://www.piotrkaluski.com/files/winguitest/docs/index.html . The source code is available at www.sourceforge.net/projects/winguitest. I'll certainly have

[perl-win32-gui-users] Merging Win32::GUI and Win32::GuiTest. (Was: Attaching to a window created by some other application)

2005-10-07 Thread Piotr Kaluski
Hi, On Thu, 06 Oct 2005 22:08:13 +0100 Robert May <[EMAIL PROTECTED]> wrote: > So, from a Win32:GUI point of view I would think that building > Win32::Gui::Test on top of the existing Win32::GUI framework makes a lot > of sense. From a Win32::GuiTest point of view I think there needs to be > some

RE: [perl-win32-gui-users] Attaching to a window created by some other

2005-10-07 Thread Jeremy White
Coincidentally, I've been working on a similar problem and was very interested to read this. My latest project involves using threads to perform lengthy tasks, but showing a progress bar with a 'Cancel' button on the main (or child) window. The problem is that the sharing of blessed variables is

RE: [perl-win32-gui-users] Attaching to a window created by some other

2005-10-07 Thread gwm
Coincidentally, I've been working on a similar problem and was very interested to read this. My latest project involves using threads to perform lengthy tasks, but showing a progress bar with a 'Cancel' button on the main (or child) window. The problem is that the sharing of blessed variables i