Search the web
Sign In
New User? Sign Up
perlguitest · Win32::GuiTest (Perl)
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 131 - 160 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
131
I found this report to be of interest - its downloadable but costs $$ - the report discusses self IT career assessment within Information Technology and career...
john0502_akers
Offline Send Email
Sep 11, 2002
6:04 pm
132
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 ...
parikshit_nadkarni
parikshit_na...
Offline Send Email
Sep 20, 2002
11:02 am
133
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 Hommel
khommel
Offline Send Email
Oct 3, 2002
12:45 am
134
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...
mike.derobio@...
AntonioDiablo
Offline Send Email
Oct 3, 2002
4:01 pm
135
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 ) = @_; ...
Ken Hommel
khommel
Offline Send Email
Oct 8, 2002
5:13 pm
136
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...
Ken Hommel
khommel
Offline Send Email
Oct 8, 2002
10:38 pm
137
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...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
Oct 9, 2002
9:16 pm
138
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...
Ernesto Guisado
erngui
Offline Send Email
Nov 7, 2002
4:35 pm
139
Hi, I am writing some GuiTest scripts to setup my NIC properties via Network Properties Dialog in Win2K. **(ControlPanel->Network&Dial-Up Connections...
minh_turbo9
Offline Send Email
Nov 15, 2002
8:25 pm
140
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...
Ernesto Guisado
erngui
Offline Send Email
Nov 16, 2002
1:20 pm
141
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...
rap101992 <palladinob...
rap101992
Offline Send Email
Dec 11, 2002
4:04 pm
142
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...
xGunneRx <xgunnerx@...>
xGunneRx
Offline Send Email
Dec 13, 2002
6:10 pm
143
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 ...
Ernesto Guisado <erng...
erngui
Offline Send Email
Dec 15, 2002
5:52 pm
144
... 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...
xGunneRx <xgunnerx@...>
xGunneRx
Offline Send Email
Dec 16, 2002
9:45 pm
145
lol nm i figured it out-> my $check = int(0x00350096); ... the ... version....
xGunneRx <xgunnerx@...>
xGunneRx
Offline Send Email
Dec 16, 2002
10:10 pm
146
The below works... however: <snip> my $self = shift; my $check = $self->{Org_ListBoxID}; # check contains the listbox id $check = int($check); $word =...
xGunneRx <xgunnerx@...>
xGunneRx
Offline Send Email
Dec 16, 2002
10:38 pm
147
Can anyone help me with message #141? ======================================================================== This email message is for the sole use of the...
Palladino, Bob
rap101992
Offline Send Email
Dec 17, 2002
1:51 pm
148
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...
Dennis K. Paulsen <ct...
ctrondlpaulsden
Offline Send Email
Dec 17, 2002
9:33 pm
149
Try the following. I tested it by duplicating the error window. # Find Error Window. Could make use of WaitWindowLike instead. my ($win) = FindWindowLike(0,...
Dennis K. Paulsen <ct...
ctrondlpaulsden
Offline Send Email
Dec 17, 2002
9:55 pm
150
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...
hasha2 <hasha2@...>
hasha2
Offline Send Email
Jan 2, 2003
5:27 pm
151
Currently I am getting the following error after trying "ppm install win32-guitest.ppd" from appropriate directory: Error: no suitable installation target...
hasha2 <hasha2@...>
hasha2
Offline Send Email
Jan 2, 2003
5:55 pm
152
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...
Dennis K. Paulsen <ct...
ctrondlpaulsden
Offline Send Email
Jan 3, 2003
2:03 am
153
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...
swoolet <spw57nc@...>
swoolet
Offline Send Email
Jan 7, 2003
9:19 pm
154
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...
Ernesto Guisado <erng...
erngui
Offline Send Email
Jan 8, 2003
11:08 am
155
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...
Dennis K. Paulsen <ct...
ctrondlpaulsden
Offline Send Email
Jan 8, 2003
3:42 pm
156
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...
stupakov <stupakov@...>
stupakov
Offline Send Email
Jan 8, 2003
5:00 pm
157
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...
Dennis K. Paulsen <ct...
ctrondlpaulsden
Offline Send Email
Jan 8, 2003
10:02 pm
158
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 ...
stupakov <stupakov@...>
stupakov
Offline Send Email
Jan 9, 2003
12:41 am
159
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...
Chris Hilton
chris_hilton
Online Now Send Email
Jan 28, 2003
11:19 pm
160
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,...
Tim Kimber
KIMBERT@...
Send Email
Jan 29, 2003
9:42 am
Messages 131 - 160 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help