Hi, I am a new user to the Win32 gui perl module. In my project i am using a Window which contains three tab.Each tab has respective text fields. I want to...
Take a look at FindWindowLike and WMGetText in the README, you'll want to use both in that order, to find the window handle to the label and then read its...
Is there a way thru perl to determine the number of processors running on a machine Thanks, Chris [Non-text portions of this message have been removed]...
Hey, i wanted to know if anyone knows of a way to automate TN3270 and/or Tandem telnets (Tandem is something like a mainframe). i thought about using...
I fixed most of the issues that I raised in my previous message. The latest version of the spy.pl script I started to write can be found in the CVS here: (with...
My most desired function. It wasn't there when I first looked into Guitest about a year ago. Even an ugly workaround or alternate tools suggestions would be...
I am using the .NET SDK that is free to download from the web site of Microsoft. I get the following error. ================================================== ...
Based on the spy--.pl in the eg directory of the distributions I started to write a bit more roboust spy program that later on I'll check in the repository. I...
... When I tried this, a 2nd dialogue came up without executing the app. After looking at the help for START, I noticed that the first param is a title string....
I am going over the examples in the eg directory of the distribution and encountered a couple of things that are not working on my XP. I'd like to fix them but...
Let me start by explaining what I am trying to achieve. Basically the Quake engine has a console window that sits behind it, I believe this to be a child...
That is all well and good but if you where typing in the main window and it was disabled, surely it would stop taking input from the keyboard therefore loosing...
... for more readability you might want to use qq() or q() for this my @args = ("start", q(""), q("C:\Documents and Settings\setup.exe")); (beware, I have not...
Got a problem, trying to do something quite different. I have a quake based game and it has a console. I am able to write to the window but think its the...
The following link has some code that was posted to the list some time ago; don't know if it works, though. You would need to add the code to guitest.xs and...
I'm fairly positive you'll need Visual Studio with Visual C++ to compile; I don't think there's any way the .NET SDK will cut it. Chris Hilton ... From: Gabor...
You might try splitting your message into individual keypresses and set the foreground window (or focus window?) before sending each key. Something like the...
Yoni ben-shlosh said: ################################## i wanted to know if anyone knows of a way to automate TN3270 and/or Tandem telnets (Tandem is...
another option is to send the low level window's message this is kind of hacking into the operating system, it would bypass the actuall key press and what...
Thanks for the answers. In the meantime, with the help of Google and other mailing lists[1] I could already compile the C++ code. I still have to clean my...
I have been looking a bit more into it and think SendMessage is even more reliable, anyone used this API function before? ... set the ... Something like ... ...
SendMessage is definately the way to go I feel, but how do you pass a letter using SendMessage, any syntax would be appreciated. I know you can only send one...
I thought about suggesting this before, but it's a good bit more complicated. Trying to keep it as simple as possible, I believe it would be something like...
Naerly there I think - Just can't get then SendMessage to work. Do I need to setup the WM_KEYDOWN? Also getVirtialKey does not work - just wondering if you...
Yeah, that's what I meant by "getVirtualKey() and looking up the constant values left as exercises for the reader". You'll need to write getVirtualKey() to...
Hi, I would like to read content of VB spread control(show up as SPR32x30_SpreadSheet in Spy window), but don't know how. Any help will be appreciated. ...
shirley.luo@...
Jul 23, 2004 3:23 pm
545
... After looking at the source and the MSDN documentation my understanding is that you can only send ketboard events to the window which currently has the...
Back to basic's I am afraid, I have looked into it and just can't figure it out, it just will not work, so now trying to get the calculator to accept keys,...