0
votes
0answers
7 views
.Net CF wait for application to display window before sending key strokes
A change in a vendor's WinMo application forces me to jump through some hoops to avoid forcing my users to log in every time. This is highly inconvenient as A) my users are farmwor …
1
vote
2answers
30 views
Is there a sendKey for Mac in Python?
In Moc10.6, I want to put a active application to de-active, or minimize by Python
I know I could use sendKey in Windows with Python, then what about in Mac?
Thanks, guys!
0
votes
2answers
90 views
Automating old DOS application using Python
Is there a way to automate an old DOS application (16-bit, probably needs an emulator such as DOSBox) from Python (on Windows)? I would like to send keys and strings to the applica …
1
vote
2answers
301 views
Is it possible to simulate keystrokes in Silverlight (similar to SendKeys)?
Is it possible to build a Silverlight application with an embedded on-screen keyboard that is context aware (e.g. on-screen keyboard appears only when a textbox is in focus).
0
votes
4answers
241 views
How to send + from the number pad in Excel/VBA?
I'm working on a project at work that, basically, does screen scraping. I'm using VBA to drive another system based on inputs stored in a spreadsheet. The problem I'm running int …
1
vote
4answers
63 views
What does Clipboard or SendKeys class has to do with WinForms?
Those two useful classes are both under the System.Windows.Forms reference....
I can't see much relation between those and winforms.. Does anybody know why they're there?
thanks. …
1
vote
1answer
94 views
Sending keys to inactive application in C#/.NET
Hi, I have an application with combobox that contains names of currently running applications. As I understood from msdn library, SendKeys method can send keys only to active appli …
0
votes
2answers
119 views
How to run .dll program?
Hi all,
I want to use Run("someProgram.exe") command using BASIC language. This will open the 3rd application program.
If that program running using .dll(not sure if it possible) …
5
votes
4answers
393 views
How to press the Windows button programmatically using C# SendKeys
Hi,
Basically I want to simulate in code a user clicking on the windows button. I know there is SendKeys which allows me to send key presses to windows if I get a handle to them, …
0
votes
2answers
110 views
Sending Keystroke
Im using SendKey and those functions to send keystrokes to a window located by its Window Name
[DllImport("user32.dll")]
public static extern int FindWindow(
string lpCla …
1
vote
2answers
155 views
Sendkeys alternative for RDP and Remote Desktop
Hello,
I have an application which injects keystrokes into applications via Sendkeys,
unfortunatly the application will not work when I am running Remote Desktop,
because of the w …
0
votes
2answers
547 views
How do I send key strokes to a window without having to activate it using Windows API?
I have made an application already that sends commands to an activated window. I want to be able to use the computer while my process is running because as …
0
votes
2answers
121 views
Intercept modal dialog popup from another application
We have a third party Windows application that we feel is too complex for our users to use efficiently. The application manages a scanner that we're using to scan 3000 documents pe …
0
votes
0answers
283 views
SendKeys class in C#
I have a c# program that uses the Process class to launch Internet Explorer and goes to a url.
It then sends in specific strings to the search box of that page, copies the whole s …
1
vote
2answers
110 views
Map Scrollwheel to buttons?
I want to make the mousewheel up and down send the + and - keys respectively - directly to the OS, as if it came from the keyboard. But only when the Win Key is pressed.
That is t …
