473,386 Members | 1,775 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

Keyboard input

Hi!

Does anybody know how to send a keystroke C#? In C++ it's
done by: keybd_event ( ... ) or SendInput ( ... ).
What namespace does include this counterpart?

Thanks

Ralf
Nov 13 '05 #1
4 32903
Ralf,

Your best bet would be to use the SendKeys class to send keyboard
strokes to your application.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Ralf Toender" <ra**@toender.de> wrote in message
news:04****************************@phx.gbl...
Hi!

Does anybody know how to send a keystroke C#? In C++ it's
done by: keybd_event ( ... ) or SendInput ( ... ).
What namespace does include this counterpart?

Thanks

Ralf

Nov 13 '05 #2
Hi Ralf,

I have never use it, but I know there is a class named SendKeys in
System.Windows.Forms , take a look at SendKeys.Send() , it may be the
function you are looking for.

Hope this help,

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation

"Ralf Toender" <ra**@toender.de> wrote in message
news:04****************************@phx.gbl...
Hi!

Does anybody know how to send a keystroke C#? In C++ it's
done by: keybd_event ( ... ) or SendInput ( ... ).
What namespace does include this counterpart?

Thanks

Ralf

Nov 13 '05 #3
Hi Peter!

Thanks a lot! What about 2 apps - one playing the keyboard
and the other is the controlled one? For example one is a
touchscreen controlling the other app?

Cheers Ralf
-----Original Message-----
Hi Ralf,

I have tested a demo that I can send the WM_CHAR message from one form tothe textBox on the other form, even if the other form is minimized orhidden.

//delcare the SendMessage API
public class win32
{
[DllImport("USER32.DLL")]
public static extern int SendMessage (IntPtr hwnd,int msg,intcharacter,int count);
}
//Use the following code to call the API to send the message win32.SendMessage (mf.textBox1.Handle,0x0102,65,1); //0x0102 is the WM_CHARmessage

[NOTE]
mf is a Form object and textBox1 is a TextBox control.

Best regards
Peter Huang
--------------------
Content-Class: urn:content-classes:message
From: "Ralf Toender" <ra**@toender.de>
Sender: "Ralf Toender" <ra**@toender.de>
References: <04****************************@phx.gbl>

<O5**************@TK2MSFTNGP10.phx.gbl>
Subject: Re: Keyboard input
Date: Wed, 9 Jul 2003 06:21:10 -0700
Lines: 44
Message-ID: <06****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcNGHPaQFDpqnapeS+mTyngsQmxdxw==
Newsgroups: microsoft.public.dotnet.languages.csharp
NNTP-Posting-Host: TK2MSFTNGXA08 10.40.1.160
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl! cpmsftngxa09.phx.gblXref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:167925X-Tomcat-NG: microsoft.public.dotnet.languages.csharp

Super! Thanks - that's it :-)

One more question: to send the keystrokes to another
application it has to get the focus. In one sample I foundthe combination: Hide () ... Show () but this makes the
form flicker. How can I give the focus back to the other
application which is running and waiting for the strokes
to come? Some kind of Deactivate () or something like
SetFocus ( FindWindow ( ... ) );

Thanks

Ralf
-----Original Message-----
Ralf,

Your best bet would be to use the SendKeys class to

send keyboard
strokes to your application.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Ralf Toender" <ra**@toender.de> wrote in message
news:04****************************@phx.gbl.. .
Hi!

Does anybody know how to send a keystroke C#? In C++

it's
done by: keybd_event ( ... ) or SendInput ( ... ).
What namespace does include this counterpart?

Thanks

Ralf
.


.

Nov 13 '05 #4

Hi Ralf,

It is not easy to control an application from another application because
the other application may be very complicated. If you really want to do so,
you may call the FindWindow and FindWindowEx APIs to get the handle of the
button on the form in another application, then call the SendMessage API to
send KeyDown and KeyUp Messages to the button. Here is some simple code.

//here is the API declare
public class win32
{
[DllImport("USER32.DLL")]
public static extern int SendMessage(IntPtr hwnd,int
msg,int character,int count);
[DllImport("USER32.DLL")]
public static extern int PostMessage(IntPtr hwnd,int
msg,int character,int count);
[DllImport("USER32.DLL")]
public static extern int SendNotifyMessage(IntPtr hwnd,int
msg,int character,int count);
[DllImport("USER32.DLL")]
public static extern IntPtr FindWindow(
string lpszClass, // class name
string lpszWindow // window name
);
[DllImport("USER32.DLL")]
public static extern IntPtr FindWindowEx(
IntPtr hwndParent, // handle to parent window
IntPtr hwndChildAfter, // handle to child window
string lpszClass, // class name
string lpszWindow // window name
);
}
//here is about how to invoke the API function.
//you may get the window class name via the spy++ include in Visual
Studio .NET
IntPtr phwnd =
win32.FindWindow("WindowsForms10.Window.8.app3","F orm1");//"button1");
IntPtr hwnd = win32.FindWindowEx(phwnd,IntPtr.Zero
,"WindowsForms10.BUTTON.app3","button1");//"button1");
win32.SendMessage(hwnd,0x0100,0x20,0);//0x0100 is KeyDown,0x20 is
Space key
win32.SendMessage(hwnd,0x0101,0x20,1);//0x0101 is KeyUp

Hope this will help you.

Best regards
Peter Huang

=============
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
Content-Class: urn:content-classes:message
From: "Ralf Toender" <ra**@toender.de>
Sender: "Ralf Toender" <ra**@toender.de>
References: <04****************************@phx.gbl> <O5**************@TK2MSFTNGP10.phx.gbl>
<06****************************@phx.gbl>
<8o**************@cpmsftngxa06.phx.gbl>Subject: Re: Keyboard input
Date: Thu, 10 Jul 2003 15:36:44 -0700
Lines: 112
Message-ID: <03****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
Thread-Index: AcNHM71Px5vJCP92SZezmHjMhbfXSQ==
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Newsgroups: microsoft.public.dotnet.languages.csharp
Path: cpmsftngxa06.phx.gbl
Xref: cpmsftngxa06.phx.gbl microsoft.public.dotnet.languages.csharp:168394
NNTP-Posting-Host: TK2MSFTNGXA12 10.40.1.164
X-Tomcat-NG: microsoft.public.dotnet.languages.csharp

Hi Peter!

Thanks a lot! What about 2 apps - one playing the keyboard
and the other is the controlled one? For example one is a
touchscreen controlling the other app?

Cheers Ralf
-----Original Message-----
Hi Ralf,

I have tested a demo that I can send the WM_CHAR message

from one form to
the textBox on the other form, even if the other form is

minimized or
hidden.

//delcare the SendMessage API
public class win32
{
[DllImport("USER32.DLL")]
public static extern int SendMessage

(IntPtr hwnd,int msg,int
character,int count);
}
//Use the following code to call the API to send

the message
win32.SendMessage

(mf.textBox1.Handle,0x0102,65,1); //0x0102 is the WM_CHAR
message

[NOTE]
mf is a Form object and textBox1 is a TextBox control.

Best regards
Peter Huang
--------------------
Content-Class: urn:content-classes:message
From: "Ralf Toender" <ra**@toender.de>
Sender: "Ralf Toender" <ra**@toender.de>
References: <04****************************@phx.gbl>

<O5**************@TK2MSFTNGP10.phx.gbl>
Subject: Re: Keyboard input
Date: Wed, 9 Jul 2003 06:21:10 -0700
Lines: 44
Message-ID: <06****************************@phx.gbl>
MIME-Version: 1.0
Content-Type: text/plain;
charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
X-Newsreader: Microsoft CDO for Windows 2000
X-MimeOLE: Produced By Microsoft MimeOLE V5.50.4910.0300
Thread-Index: AcNGHPaQFDpqnapeS+mTyngsQmxdxw==
Newsgroups: microsoft.public.dotnet.languages.csharp
NNTP-Posting-Host: TK2MSFTNGXA08 10.40.1.160
Path: cpmsftngxa06.phx.gbl!TK2MSFTNGP08.phx.gbl!cpmsftngxa09.phx.gblXref: cpmsftngxa06.phx.gblmicrosoft.public.dotnet.languages.csharp:167925X-Tomcat-NG: microsoft.public.dotnet.languages.csharp

Super! Thanks - that's it :-)

One more question: to send the keystrokes to another
application it has to get the focus. In one sample Ifoundthe combination: Hide () ... Show () but this makes the
form flicker. How can I give the focus back to the other
application which is running and waiting for the strokes
to come? Some kind of Deactivate () or something like
SetFocus ( FindWindow ( ... ) );

Thanks

Ralf

-----Original Message-----
Ralf,

Your best bet would be to use the SendKeys class to
send keyboard
strokes to your application.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- ni**************@exisconsulting.com

"Ralf Toender" <ra**@toender.de> wrote in message
news:04****************************@phx.gbl. ..
> Hi!
>
> Does anybody know how to send a keystroke C#? In C++
it's
> done by: keybd_event ( ... ) or SendInput ( ... ).
> What namespace does include this counterpart?
>
> Thanks
>
> Ralf
.


.


Nov 13 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ray | last post by:
I have English Windows XP Pro and Office 2003 Pro on my computer. When I enter data into fields of tables, queries and forms of Access 2003, it automatically switches to Chinese keyboard input. ...
23
by: herrcho | last post by:
What's the difference between STDIN and Keyboard buffer ? when i get char through scanf, i type in some characters and press enter, then, where do the characters go ? to STDIN or Keyboard...
4
by: santa19992000 | last post by:
can I use scanf to get input (some times user enters input sometimes not, just hit keyboard)?. It displays to enter IP address, if user wants to change, then he enters, otherwise he hits keyboard,...
7
by: Don Riesbeck Jr. | last post by:
I'm working on an application (OEM) using C# that utilizes input from a keyboard, and USB Barcode Scanner. The scanner is a HID Keyboard device, and input from it is sent to the system as if it...
0
by: rs | last post by:
Hi guys, I am trying to read from a USB keyboard using vb.net and HID classes. the USB keyboard is not my primary keyboard. I have a ps2 keyboard connected and is detected in device manager as...
2
by: rs | last post by:
Hi guys, I am trying to read from a USB keyboard using vb.net and HID classes. the USB keyboard is not my primary keyboard. I have a ps2 keyboard connected and is detected in device manager as...
7
by: jpierson | last post by:
Hi, I am tryin to create a keyboard hook that sends the keystroke ctrl + pause/break. I haven't used keyboard hooks before so I'm not too sure how to use them public int MyKeyboardProc(int...
1
by: Louis Cypher | last post by:
I'm working on an application (OEM) using c# that uses input from a keyboard and a USB Barcode Scanner. I need to be able to identify keystrokes from the barcode scanner and remove them from the...
3
by: NaN | last post by:
I've been trying to use _kbhit() but it didn't do what I thought it would from books, "Detects whether a keypress is available for reading." Herbert Schildt says, "If the user has pressed a key,...
8
by: BD | last post by:
How can I duplicate the behavior of the operating system shortcut keys in my application? For example, my windows form has 5 controls (textboxes), the operating system will pickup which control...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.