I found this report to be of interest - its downloadable but costs $$ - the report discusses self IT career assessment within Information Technology and career...
hello there am new to Win32::GuiTest (Perl) can anybody tell me where can i get basic tutorial of how to use Win32::GuiTest (Perl) fucntions ? regards ...
Thanks for creating a great tool! Now, onto the gripes: I am trying to use GuiTest to test an MFC application that includes a Toolbar control. I've tried to...
Ken, I can't recall why I didn't use the SendMouse function, but I remember having some trouble with it. I used the MouseMoveAbsPix function instead: #add...
Thanks for your response. That's almost exactly what I'm doing. I just wrote a sub to take the x and y coordinates: sub Click( $$ ) { my( $myX, $myY ) = @_; ...
Either this function doesn't work, or I don't understand the meaning of "Grayed" in this context. I think of a "Grayed" button as a button that is disabled. I...
IsGrayedButton is intended to work on radio buttons or check boxes, not on regular buttons. From the MSDN documentation, the actual state of these grayed...
Hi, Thanks to the nice guys from Windows Developer Magazine (http://www.wd-mag.com/), my February 2002 article "Testing Win32 GUIs with Perl and C" is now...
Hi, I am writing some GuiTest scripts to setup my NIC properties via Network Properties Dialog in Win2K. **(ControlPanel->Network&Dial-Up Connections...
Hi, ... Sometimes you don't need it. Using TAB and arrows to navigate through controls is enough most times. And then use SPACE, ENTER or hot-keys to...
I'm a first time user to this group so please bear with me... I'm trying to click (mouse click, Enter, spacebar, anything) on a dialog box's "OK" button. The...
Can anyone show me a good source example of GetListText() when using it on a listbox? I've tried to get list text without much sucess. :( TIA! xGunneRx...
Hi, ... using ... 1) I just opened a application I know contains a listbox (I used WinAT). 2) Run spy--.pl (in win32-guitest\eg) and it shows the listbox ...
... Ok that seems to work. However, if I do something like pass a variable into the function it seems to blow up: <snip> #!/usr/bin/perl -w use strict; use...
The below works... however: <snip> my $self = shift; my $check = $self->{Org_ListBoxID}; # check contains the listbox id $check = int($check); $word =...
Can anyone help me with message #141? ======================================================================== This email message is for the sole use of the...
GetListText's first parameter needs to be the handle to the list box not the control id. The handle of the control can be obtained through FindWindowLike by...
Try the following. I tested it by duplicating the error window. # Find Error Window. Could make use of WaitWindowLike instead. my ($win) = FindWindowLike(0,...
I am trying to install Win32-GuiTest-1.49.1 usinf ppm on Perl v5.8 build 804. Error message reports that GuiTest is not for this version of Perl. Will there be...
Currently I am getting the following error after trying "ppm install win32-guitest.ppd" from appropriate directory: Error: no suitable installation target...
Some of the nice changes in 5.8.0 caused Perl module binaries created under 5.6.x (i.e., Win32::GUITest) to be incompatible. Possible Options: 1) Go back and...
When my app starts, the window comes up a few seconds before it can handle input. During this time, the hourglass cursor is displayed. Is there some way that...
Hi, I think your best bet is to use the Win32::API module. The documentation for the module shows how to call 'GetCursorPos'. I think you'll need a combination...
Hi, If you are not already using WaitWindowLike to wait for the window to come up, I would suggest trying that first. If that doesn't work, you can check to...
I have a similar problem with my perl scripts that use perlguitest to open Internet Explorer and connect to my bank web site. To check that I have the web page...
Note: If you wanted to, you could use something like MenuSelect ("&Edit|Select &All", [WINDOW HANDLE]) to do the copy. It should be more reliable then...
That is an interesting subject, and I would be happy if somebody gives me a good advice. The problem with using external programs as lynx, wget or curl, or ...
Does any one have any insight on accessing the contents of a tree control? I believe the specific class I'm interested in is SysTreeView32. Any help...
I have successfully accessed nodes within a tree view using a combination of Win32-ActAcc and Win32-GUI. I can send you the code if you're interested. regards,...