Hi, SelTabItemText is available in version 1.50.3. You're probably using the older one. Get the most recent one from http://sourceforge.net/projects/winguitest...
1039
ben_cuthbert
Sep 7, 2005 1:53 pm
Thanks for the heads up, got the new version but had a problem on compile, can't seem to find windows.h header file C:\TEMP92;WIN32-~1.3-A\WIN32-~1.3-A>nmake ...
1040
ben_cuthbert
Sep 7, 2005 4:47 pm
Would it be possible to add a function to do a find window by class that would allow people to pickup controls like "AfxFrameOnView42 " ...
1041
Chris Hilton
chris_hilton
Sep 7, 2005 4:53 pm
You can do this with the existing FindWindowLike() function, you just need to set the third parameter appropriately. Just "AfxFrameOnView42" will work for your...
1042
Dennis K. Paulsen
ctrondlpaulsden
Sep 7, 2005 11:19 pm
In this case you usually want to ensure you run vcvars32.bat; which is included with VC. Otherwise you could download the zip package and run ppm to install...
1043
Dennis K. Paulsen
ctrondlpaulsden
Sep 7, 2005 11:25 pm
Hey Piotr, Are you getting royalties from WinSpector? ;-) I haven't used it yet, but I think I'm going to try it sometime. Regards, D...
1044
stuart arnold
sarnold_688
Sep 8, 2005 12:36 am
If he is, then I'm losing out! I've been promoting this for 2 years. PS, the developer, Russ, has been quite responsive to improvements and such. Drop SPY++,...
1045
Piotr Kaluski
pkaluski
Sep 8, 2005 6:29 am
... You are right, it may look like this. I am really enthusiastic about this tool because apart from its usefulness it is such an excellent example of a free...
1046
wenjie wang
wiseagent2000
Sep 8, 2005 6:32 am
... the ... Hi Stuart, I'm quite intested in IESPY and would like to try it out ;-) where could I get it from? Regards, WWang +-Wenjie Wang...
1047
stuart arnold
sarnold_688
Sep 8, 2005 8:35 am
you'll need to google for it. I got it about 2yrs ago. the address was listed, but unknown where it is now. You may be able to find others similar to it. ... ...
1048
ben_cuthbert
Sep 8, 2005 11:33 am
I did try that search with the following code, and it does not seem to return anything. @w = FindWindowLike(undef,undef,"AfxFrameOnView42",undef,undef); ...
1049
Piotr Kaluski
pkaluski
Sep 8, 2005 12:20 pm
As far as I know it should be AfxFrameOrView42 not AfxFrameOnView42 ("Or" rather then "On"). -Piotr ... to ... just ... Just "AfxFrameOnView42" ... children ...
1050
ben_cuthbert
Sep 8, 2005 1:38 pm
Sorry about that, changed it and i got some info back..... So once i have found the class id etc, how do i show what information is in that frame, is their a...
1051
rafelafrance
Sep 9, 2005 6:33 am
*Ugh* The current method (I'll space you the XS code): THERE HAS TO BE A BETTER WAY! 1) Call up the context menu using MouseClick() or SendKeys() 2) Set up an...
1052
Piotr Kaluski
pkaluski
Sep 9, 2005 6:46 am
Hi, Some time ago I was trying to find a solution for the same problem. I was thinking on the way to handle IE menu bar and its submenus. This problem is...
1053
rafelafrance
Sep 9, 2005 9:23 pm
Thank you for your reply. After sleeping on it I realized that I can... 1) Set up a trap to WM_INITMENUPOPUP 2) Call a mouse right click (the hot key should...
1054
Johnny S
lo9ik
Sep 9, 2005 9:24 pm
I have not been successfull in sending a filepath to the screen because I do not know how to sendkeys a period, colon, or slash. Is it possible to sendkeys...
1055
Piotr Kaluski
pkaluski
Sep 9, 2005 9:34 pm
... R- ... Right ... Timing is a recurring problem in GUI testing. I would just add a 4th optional parameter (as you suggest). If later on someone finds a ...
1056
Piotr Kaluski
pkaluski
Sep 9, 2005 9:36 pm
"c:\\test.bak" should work ("\" has to be escaped by another backslash) -Piotr...
1057
stuart arnold
sarnold_688
Sep 9, 2005 11:12 pm
Curious, but are you trying to fill in an edit box or something like that? Sendkeys() is usually used for a keystroke sequence, eg, "ALT-F O " for "File...
1058
Piotr Kaluski
pkaluski
Sep 10, 2005 2:15 pm
Hi Dennis, I've checked out all files from the source forge. And I can't build it any more. I have noticed that it now uses Module::Build to build the module....
1059
Gábor Szabó
gabor529
Sep 11, 2005 8:17 am
... IIRC I started to move over but have not finished it. I think Dennis went back to Makefile.PL try to ignore the Build.PL script Gabor...
1060
Piotr Kaluski
pkaluski
Sep 11, 2005 10:13 am
Hi, I have a small suggestion about GuiTest.pm file. Currently, while populating %EXPORT_TAGS we write several functions per line, and they are not ordered....
1061
Gábor Szabó
gabor529
Sep 11, 2005 10:27 am
go ahead Gabor...
1062
rafelafrance
Sep 12, 2005 6:12 am
... the ... Done. ... handle. ... - ... Newbie mistake, sorry. Hwnd can be either the main dialog's or the control's handle in this case. ... Oops... I have...
1063
Piotr Kaluski
pkaluski
Sep 12, 2005 6:21 am
Thank you very much, Please allow some time for reviewing your changes and putting them in the code base (it may take 2 weeks). I have just committed some ...
1064
ben_cuthbert
Sep 12, 2005 9:35 am
All How do i work about the current x and y axis of the current window, and then ask the mouse to move to a certain point and click there. So that i can use...
1065
ben_cuthbert
Sep 12, 2005 12:22 pm
Does anyone think that maybe this is the function i am looking for, which returns the current x and y cords of the current window GetWindowOrgEx ...
1066
ben_cuthbert
Sep 12, 2005 3:08 pm
All How does one hold the shift button down like SHIFT LEFT ARROW and then hit left arrow 4 times would it be SendKeys("{+}{LEFT 5}");...
1067
ben_cuthbert
Sep 13, 2005 11:01 am
All Is it possible to save the following command into an array for use later. so SendKeys("^c"); Which would copy text from the screen, but like this my @info...