Skip to search.

Breaking News Visit Yahoo! News for the latest.

×Close this window

perlguitest · Win32::GuiTest (Perl)

The Yahoo! Groups Product Blog

Check it out!

Group Information

  • Members: 2444
  • Category: Perl
  • Founded: Jul 25, 2001
  • Language: English
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Messages

Advanced
Messages Help
Messages 1704 - 1733 of 1818   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand Author Sort by Date ^
1704 brentje Send Email Mar 1, 2007
1:53 pm
Hi Try creating a pointer for $hdr_buf like you do $str_buf. Most of C works with pointers, so I think that may be the key. my $hdr_buf_ptr = pack( "l l l", ...
1705 jonnyroberts1978
jonnyroberts... Send Email
Mar 1, 2007
4:12 pm
Hi thanks I have tried that attached but it didn't seem to work. Is there any easy way to debug the messages with MFC to see where it is going? Below is a copy...
1706 Philip Zembrod
pzembrod Send Email
Mar 1, 2007
4:43 pm
... UltraVNC offers such a feature: If your remote control a PC, there is a button in the ultraVNC client's tool bar which shuts off the real keyboard and...
1707 jonnyroberts1978
jonnyroberts... Send Email
Mar 1, 2007
5:35 pm
I have managed to break my problem down slightly and found message that sends only NMHDR part of the structure. This is the NM_RCLICK message. Looking at the...
1708 brentje Send Email Mar 1, 2007
8:37 pm
You shouldn't have to create a pointer for the HWND. Just send in the HWND for the ListView object should work. The one I'm testing with (Windows Explorer...
1709 jonnyroberts1978
jonnyroberts... Send Email
Mar 2, 2007
12:50 pm
Thankyou very much for your help I will go with your work around for now. It is strange that the PostMessage seems to cause a crash but the SendMessage doesn't...
1710 brentje Send Email Mar 2, 2007
2:28 pm
PostMessage crashes things, eh? I haven't tried it before since I thought the only difference would be that it doesn't return anything. But I just tried it...
1711 Sander Pool
sander_pool Send Email
Mar 2, 2007
7:45 pm
Hello, I've been trying to automate a small application called Attrib from Network Appliance. I do not have access to the source code or the developers. The...
1712 Timothy Mitchell
tmaxquig Send Email
Mar 3, 2007
11:12 am
FindWindowLike puts it's result into an array. You may have to use the second (or third) item in that array if you can be sure that the number of such windows...
1713 Sander Pool
sander_pool Send Email
Mar 3, 2007
6:41 pm
I use the controls' locations to keep them apart. I know the one I want is always on the right. I have no idea if the order in which they show up in the array...
1714 jonnyroberts1978
jonnyroberts... Send Email
Mar 6, 2007
2:35 pm
Looking at this link: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/shellcc/platform/commctls/common/messages/wm_notify.asp it states "For...
1715 jonnyroberts1978
jonnyroberts... Send Email
Mar 6, 2007
2:57 pm
Finally got it working. For some reason I had to use PostMessage rather then SendMessage. Also I think the reason it was crashing before was because the memory...
1716 brentje Send Email Mar 6, 2007
6:02 pm
So that's how you're suppose to create the struct. That's good to know, thanks. The funny thing is that I now see the notify message with WinSpector, with the...
1717 jonnyroberts1978
jonnyroberts... Send Email
Mar 7, 2007
10:00 am
Thats strange I am using XP and just tried to run the script and it sent the message correctly and didn't crash. If I can find a 2K system around here I will...
1718 jonnyroberts1978
jonnyroberts... Send Email
Mar 7, 2007
1:19 pm
This code works on XP & 2K had to use the HDN_ITEMCLICKW message as explorer didn't seem to respond to LVN_COLUMNCLICK. The message is sent to the list but in...
1719 Dennis K. Paulsen
ctrondlpaulsden Send Email
Mar 7, 2007
2:32 pm
Hello, Are you able to run the recorded script without any errors? If no errors when running the script, it is possible you may have to troubleshoot the script...
1720 brentje Send Email Mar 7, 2007
2:48 pm
Excellent...I got it working. Works beautifully actually. My problem was that I needed to put a wait-state in between the PostMessage and the...
1721 brentje Send Email Mar 8, 2007
5:08 pm
Now I've been thinking about this so much I had to experiment. Found this on my travels. ...
1722 brentje Send Email Mar 8, 2007
7:29 pm
Cool...found something that works. http://www.see.ed.ac.uk/~mrichar1/perl/scripts/blockinput.pl Found here: http://www.see.ed.ac.uk/~mrichar1/perl/ Seems to...
1723 Mark Seger
markseger3354 Send Email
Mar 10, 2007
4:36 pm
I just discoved GuiTest yesterday - great tool - and this group about 5 minutes ago! Has anyone ever used GuiTest to try and control a remote system via the...
1724 Sander Pool
sander_pool Send Email
Mar 10, 2007
5:13 pm
Mark, I use STAF to launch Win32::GUI scripts remotely. STAF runs in application mode under terminal server. I'm not sure it would work as a service when no...
1725 Mark Seger
markseger3354 Send Email
Mar 11, 2007
4:59 pm
I've got to believe this is possible but didn't see anything in the documentation that talked about combining more than two keys. I did try a one line script...
1726 dukestefjen Send Email Mar 12, 2007
11:25 am
Is there any way to get the NUMLOCK keyboard status, So that I only use SendKeys("{NUMLOCK}") when its already on?...
1727 Monica Cohen
cohen.monica Send Email
Mar 12, 2007
3:07 pm
You can use the GetNumLock() function from Win32::KeyState module. ... [Non-text portions of this message have been removed]...
1728 sandeephughes Send Email Mar 12, 2007
3:10 pm
Hi friends, Can you please tell me where to download the module Win32::Process. will be very thankfull. --sandeep....
1729 jonnyroberts1978
jonnyroberts... Send Email
Mar 12, 2007
3:43 pm
This should work Win32::API->Import(&#39;user32&#39;, 'GetKeyState&#39;, 'I', 'I'); print GetKeyState(0x90) & 1;...
1730 Sander Pool
sander_pool Send Email
Mar 12, 2007
3:44 pm
Don't worry about it. It's part of Activestate. You already have it. Have you tried to use it already? I ran into the same issue a few weeks ago. Very odd that...
1731 Sandeep Bansal
sandeephughes Send Email
Mar 13, 2007
7:20 am
Thank you Sander. I will try to use it tomorrow in the office. I have one more problem in using system( "start notepad.exe"); But it is not opening notepad in...
1732 Mark Seger
markseger3354 Send Email
Mar 13, 2007
7:22 am
As I posted in an earlier note I'm trying [and failing] to run GuiTest from a remote machine via the 'rcmd' command and I'm guessing it's because it redirects...
1733 Sander Pool
sander_pool Send Email
Mar 13, 2007
3:10 pm
Sandeep, go to CPAN or the documentation that comes with ActiveState and look at the example. I'm pretty sure there is no need for 'start&#39;. It also shows how...
Messages 1704 - 1733 of 1818   Oldest  |  < Older  |  Newer >  |  Newest
Add to My Yahoo!      XML What's This?

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