I have a windows xp system that has a 3rd party applet in the systray that I need to launch to then have act on. How can I open the applet from the command...
558
Dan Bennett
foxcorner
Sep 8, 2004 12:02 pm
Hi all, I'm trying to use Win32::GuiTest to automate the installation of an application. I'm trying to get FindWindowLike() to spot when a window appears with...
559
calltoprashant
Sep 8, 2004 2:05 pm
Hi, I am new to this module and trying out some functions. In FindWindowLike() function we nwwd to provide numeric id of window. can anybody tell me how to get...
560
Gabor Szabo
gabor529
Sep 8, 2004 2:05 pm
... It would be much easier to guess if you sent in the code you are running that gives you this error message. regards Gabor...
561
robert529742
Sep 8, 2004 2:05 pm
Hi. Apologies if this is a double post. I am having some problems with the GetComboContents and/or GetComboText functions. Having identified the combo box I...
562
robert529742
Sep 8, 2004 2:05 pm
Hey. My first posting to this group, be gentle! I am having problems with a bit of code to retrieve the contents of a combo box. I can identify the box, get...
563
Nagarajan M
naga_cit
Sep 8, 2004 2:05 pm
Hi, I think there is no way to identify paricular tray icon as a object. But still you can identify the trayicon by its tool tip and move mouse over there then...
564
Dan Bennett
foxcorner
Sep 8, 2004 2:06 pm
Hi, I'm new to Guitest, and fairly new to Perl. :-) I'm planning to automate the running of some benchmarks on WinXP, and Guitest looks like it'll be ideal for...
565
Chris Hilton
chris_hilton
Sep 8, 2004 4:02 pm
1. You should probably try running your code with the -w switch to Perl (perl -w program.pl) or add the 'use warnings' pragma to your code; among possibly...
566
Gabor Szabo
gabor529
Sep 12, 2004 12:56 pm
... maybe /Pro\/ENGINEER 2001.*Setup/ Gabor...
567
robert529742
Sep 12, 2004 12:56 pm
Hi, Thanks for the replies! I hoped to have all the element text from the GetComboContents call. When I got a list back ( garbage looking data but the correct...
568
Dan Bennett
foxcorner
Sep 12, 2004 12:58 pm
Hi again, Another question... There's a window which shows a progress bar and a "Cancel" button. When the task is finished, the "Cancel" button disappears and...
569
Coleman Tom
tom_g_coleman
Sep 12, 2004 12:59 pm
how does one send ctrl + left click? Where can I get the latest win32::GuiTest? CPAN has an old version, I remember seeing a newer one somewhere else. thanks,...
570
Jacob Glide
glid82
Sep 12, 2004 1:01 pm
Microsoft Spy++ will probably find your id, im not sure, it finds handles, i could of swore that findwindowlike() would find those if you didnt put in that...
571
ykozlo
Sep 12, 2004 1:01 pm
Hello, I was looking a way to select the textbox and the button of the application I would like to drive. ...
572
ykozlo
Sep 12, 2004 1:02 pm
Yes "there is more than a way do do the job". Well, Vb code: textbox = FindWindowEx(myapp, 0&, "edit", vbNullString) Perl code: my ($textbox) =...
573
ykozlo
Sep 12, 2004 1:03 pm
ok I don't understand anymore, previous code was my $WM_SETTEXT="\x0C"; It appear that $WM_SETTEXT is a string I Don't remenber how to affect an hexa to a...
574
Stuart Arnold
sarnold_688
Sep 12, 2004 8:23 pm
SPY++ is the basic one to use, however, "Winspector" does a much better job and its free. here's the link http://www.windows-spy.com/ there's a lot in it, much...
575
Chris Hilton
chris_hilton
Sep 13, 2004 4:07 pm
You might try the following for ctrl + left click: SendRawKey(VK_LCONTROL); SendMouse("{LEFTCLICK}"); SendRawKey(VK_LCONTROL, KEYEVENTF_KEYUP); The latest...
576
Chris Hilton
chris_hilton
Sep 13, 2004 4:14 pm
Assuming the "Finish" button already exists but is hidden, you should be able to use FindWindowLike() to get the button's window handle and then: do {...
577
Chris Hilton
chris_hilton
Sep 13, 2004 4:29 pm
Upon further research, you're essentially right saying it's the wrong sort of combo box, at least according to this microsoft.public.vb.winapi newsgroup: ...
578
robert529742
Sep 14, 2004 10:35 am
Still having grief getting the text out of a combo box :( Could one of you clever chaps post me a short snippet of code that sucessfully manages to get text...
579
Jacob Glide
glid82
Sep 14, 2004 10:35 am
yes, ive used that before. i couldnt remember that name. last time i used it it was a big resource hog for me, but then again im working on a very slow machine...
580
robert529742
Sep 14, 2004 11:49 am
Bingo! Thanks a million Chris. I will have a look at that code and see if I can make some progress with it. -Ed. ... wrong sort ... 8&safe=off&th=e8e1e800df90 ...
581
Dan Bennett
foxcorner
Sep 14, 2004 11:50 am
Thanks Chris, Your hint was enough for me to figure it out. My questions will become less dumb as I get the hang of this. :-) Dan ... ...
582
Danny R. Faught
sw_alchemist
Sep 14, 2004 2:23 pm
I recently wrote a review of MWSnap for Open Testware Reviews, and found that it includes a "Window Info Tool" that shows coordinates, class name, and handle...
583
pkaluski
Sep 30, 2004 3:24 pm
Hi, I had the same problem. And I believe I have found the reason why it happens. I placed a detailed explanation on my website. Have a look: ...
584
Coleman Tom
tom_g_coleman
Oct 1, 2004 9:00 am
nice article. interesting how the id and window text can get mixed up Some languages allow you to specify if the value being provided is a handle, id, or...
585
Gabor Szabo
gabor529
Oct 1, 2004 10:59 am
I am glad to let you know that Ernesto gave two people Piotr Kaluski and myself moderator rights on the mailing list. As Ernesto wants the list to remain...
586
pkaluski
Oct 1, 2004 12:07 pm
Hi, Have a look: http://www.piotrkaluski.com/automation/gui/gui_test_tut.html I am waiting for comments. The general suggestion is: * If you have comments on...