[perl-win32-gui-users] Round Buttons

2005-10-06 Thread Jeremy White
Hi, I noticed a tracker item Round Buttons https://sourceforge.net/tracker/index.php?func=detailaid=1303379group_id=16572atid=366572 With the description: please set in feature round buttons Could anyone provide a little more detail? Cheers, jez.

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

2005-10-06 Thread Piotr Kaluski
Hi, I am one of developers of Win32::GuiTest library. It is a module for GUI test automation. I am actually pretty impressed with all the great work you have done. Using your module should free us from writing some functions ourselves. I have one question. My impression is, that your library is

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

2005-10-06 Thread Jeremy White
windows it manipulates. Is it possible to attach to a window/control created by some other application? Say I have a handle of a main window of Windows calculator. How do I turn it into Win::GUI object? Interesting question. As a quick/dirty answer, yes it could be possible. The basic problem

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

2005-10-06 Thread Jeremy White
Hummm replying to my own post:) windows it manipulates. Is it possible to attach to a window/control created by some other application? Say I have a handle of a main window of Windows calculator. How do I turn it into Win::GUI object? Interesting question. As a quick/dirty answer, yes it

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

2005-10-06 Thread Jeremy White
Or just merge their functionality, developer base, and the technical prowess of the developers, to make both better, less redundant, and more interoperative? Lots of interesting idea's. I've just had a quick look at guitest.xs and there does seem to be some over lap in functions (such as

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

2005-10-06 Thread Ariel Serbin
My opinion is that GuiTest is a weird mix of functions that are not really specific to testing. For that reason, it seems that the meat of those functions should reside in more appropriate modules (like Win32::GUI) and GuiTest (or any module specific to testing) should call those functions. That

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

2005-10-06 Thread Robert May
Piotr Kaluski wrote: Hi, I am one of developers of Win32::GuiTest library. It is a module for GUI test automation. I am actually pretty impressed with all the great work you have done. Using your module should free us from writing some functions ourselves. I have one question. My impression is,

[perl-win32-gui-users] Perl versions earlier than 5.6.1

2005-10-06 Thread Robert May
Is anyone using Win32::GUI with any Perl version earlier than 5.6.1 I am considering officially dropping support for earlier versions, and so this is your chance to tell me if that will cause you problems. Regards, Rob. -- Robert May Win32::GUI, a perl extension for native Win32 applications

[perl-win32-gui-users] Victor Todd/Aut/Schneider is out of the office.

2005-10-06 Thread victor . todd
I will be out of the office starting 10/03/2005 and will not return until 10/11/2005. I will respond to your message when I return. Please see Joe Willwerth for any important or pressing issues

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

2005-10-06 Thread Piotr Kaluski
Jeremy White wrote: Or just merge their functionality, developer base, and the technical prowess of the developers, to make both better, less redundant, and more interoperative? Lots of interesting idea's. I've just had a quick look at guitest.xs and there does seem to be some over lap