Hi there is no PPD file for that so better u install it mannual from the CPAN. Then Install Nmake15 from the Microsoft, and then use that module kumar21yash...
Hi, All, Can I use Perl to check the amount of memory used by certain app, like NotePad and Internet Explorer? And can I use Perl to check the amount of free...
Hi, All, Is there a way to take a screen shot of the entire monitor, or certain app, with Perl? I am using Microsoft Windows. Thank You All in Advance Wallace...
Hi, I am trying automation on an application written in Qt. I am able to use the functions like FindWindowlIke & GetWindowRect. But unable to use functions...
Hi, All, How can I find out what functions are available in user32.dll? And, how can I find out what other useful DLLs are out there for Windows? Thank You All...
# Don't think you can do that with gui-test, unless I missed somthing in spy--. Might be overkill to use the gui-test module. Might want to stick with wmi...
How can I detect a key stroke (ala ESC) to stop a GUI-test script immediately? I'm experimenting with gui-test to automate an old windows app with no macro...
Check out the dibsect feature of the guitest module. http://search.cpan.org/~ctrondlp/Win32-GuiTest/GuiTest.pm#DibSect A simple example: $pic1 = new...
My code is my @win=FindWindowLike(0, "Agent Tool "); die "No agent tool is running, please open one.\n" if not @win; if(@win){ print "Tool is running\n" ; } my...
I don't find any issues with your code, same peace of code works for me with different window title. my @win=FindWindowLike(0, "Open Perl IDE*"); die "No agent...
1. if you do have the window of "Agent Tool", is the popup window a child of it? if so, pass the $win[0] to that call to isolate it. 2. is the popup window a...
Hi, evenprime, Thanks. This is great help. Thanks Wallace ... __________________________________________________ Do You Yahoo!? Tired of spam? Yahoo! Mail...
Hi Wallace, Well i guess u cud use the {PRTSCR} available with the SendKeys function.. Then invoke mspaint or whatever and copy it over.. Check this out:...
Hi, dgilbert101, Thanks. This is great help. I really appreciate this. Thanks Wallace ... http://search.cpan.org/~ctrondlp/Win32-GuiTest/GuiTest.pm#DibSect ...
Hi, I hope this helps. Regards, Kapil #The following API checks the following #CPU Time which is equal to KETNEL MODE + USER MODE TIME #PEAK MEMORY For details...
I think FindWindowLike don't know popup window. ... me with different window title. ... for. You can specify regular expression also. ... popup window?...
Now I am using PushButton(). This function seems not work correctly to me. I checked example and found like "^Save","&OK",or "Yes" and I don't understand. So,...
Hi, im trying to click on a button called Go. i could able do this with the following code... use Win32::GuiTest qw ( :ALL); use warnings; use strict; system...
I open notepad and write some text, then I use the following code to test use Win32::GuiTest qw(:ALL); my @win=FindWindowLike(0, "Notepad"); die "no notepad"...
This happens to me often in my test scripts. It usually is because my script gets ahead of the application. It's a matter of timing. Try inserting a sleep...
In PushButton function, "^Cancel" -> Button name "Cancel" starting with with "C". "&Cancel" -> Button name "Cancel", "&Cancel" happens to be in case if...
Hi, It is all about being in the foreground. PushButton presses button in a window, which is in a foreground (is active and has input focus). In your example...
check out "ScriptomaticV2.hta" from microsoft. its free and does a lot of object manipulation "per object" in perl, and other languages. modifiable as well. ...
Take a screen shot and paste it in the mspaint. Point the Button or anything using mouse and find the co ordinates in the progress bar....... But we need to...