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 150 - 179 of 1815   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
161
Greetings, I have an MFC app on W2000 that I am trying to test with guitest, everything has worked so far but I have struck a strange problem. I am trying to...
funes666 <tomh@...>
funes666
Offline Send Email
Feb 6, 2003
2:11 am
162
... into ... following ... Well I have answered my own question. Referring to the MSDN article on WM_KEYUP in the Windows Management section, it mentions in ...
funes666 <tomh@...>
funes666
Offline Send Email
Feb 6, 2003
3:23 am
163
I'm trying to check to see if a button is enabled or disabled. I've seen that the IsWindowEnabled method can be used. Does anyone know how to use this...
byronkat <byronkat@...>
byronkat
Offline Send Email
Feb 27, 2003
7:53 pm
164
The following example checks the enabled state of Calculator's Backspace button, try something similar for your purposes: # Tested under Win32::GuiTest (v...
Dennis K. Paulsen <ct...
ctrondlpaulsden
Offline Send Email
Mar 1, 2003
3:06 am
165
Thanks, this is a big help!...
byronkat
Offline Send Email
Mar 7, 2003
3:54 pm
166
Is this the code that would deal with a 'SysListView32' class object? Did this find it's way into the 1.49.2 build? If not, could you please provide me a...
Garnet R. Chaney
thewebmill
Offline Send Email
Mar 7, 2003
7:02 pm
167
If you are using the perl version from ActiveState, then you can use there ppm tool and install Win32-GuiTest from their site. The only problem is that's it's...
bugreaper94088
Offline Send Email
Mar 13, 2003
3:04 am
168
Friends A simple question !! I have one of these very nice perl scripts which uses just the GuiTest package and nothing else. And now I want to lend it to...
Rahul Chauhan
rahulschauhan
Offline Send Email
Mar 24, 2003
8:14 am
169
How about using a product like PerlApp from ActiveState Corp.? Its not a compiler. It allows for easier distribution and I've had excellent success with it. ...
Palladino, Bob
rap101992
Offline Send Email
Mar 24, 2003
12:59 pm
170
Hi All, I have an interactive console application that I am trying to automate. I want to send key strokes to an application that I spawn using the system call...
brad_e1
Offline Send Email
Apr 4, 2003
3:42 am
171
Hi, ... Try system("$Path/myexe.exe -i config.ini >> output.txt"); instead. start creates a new console and that messes up the redirection. Take into account...
Ernesto Guisado
erngui
Offline Send Email
Apr 4, 2003
2:25 pm
172
You might also try looking at the IPC::Open2 and IPC::Open3 modules. I haven't used them, but they seem to do something similar to what you want. Chris Hilton ...
Chris Hilton
chris_hilton
Online Now Send Email
Apr 4, 2003
4:06 pm
173
I'm not sure if GuiTest is the right tool for what I'm trying to do, so forgive me in advance.... I'd like to have a script that manages user input and sends ...
tirian1967
Offline Send Email
Apr 9, 2003
3:58 pm
174
Hello, Using Notepad and WMSetText instead of SendKeys, a crude example follows: Note: If you actually just had to use the SendKeys function itself instead of...
Dennis K. Paulsen
ctrondlpaulsden
Offline Send Email
Apr 10, 2003
4:45 am
175
... [...] WMSetText is just what I needed! Thanks so much. (The IsKeyPressed part didn't work so well on my Win98 system, but that's a much more manageable...
tirian1967
Offline Send Email
Apr 13, 2003
4:48 am
176
HI, I am new to perl and want to use the library win32::GUITEST Here is the program which I am trying to run ...
Rajeev J
jrajeev@...
Send Email
Apr 22, 2003
7:58 am
177
Here I also tried to install the win32::guitest gettting the module from cpan.org but when I use the command to install Using ppm> install...
Rajeev J
jrajeev@...
Send Email
Apr 22, 2003
8:23 am
178
Try just ppm install Win32-GuiTest Thanks, jason On Tue, 22 Apr 2003 13:52:46 +0530, Rajeev J wrote ... -- This email from jason blakey - jblakey@... ...
Jason Blakey
jason_blakey
Offline Send Email
Apr 22, 2003
11:51 am
179
Hi Jason, When I tried that I got the following error message E:\Win32-GuiTest-1.49>ppm install win32-guitest.ppd Error: no suitable installation target found...
Rajeev J
jrajeev@...
Send Email
Apr 22, 2003
12:06 pm
Messages 150 - 179 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