473,625 Members | 2,658 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Using SendMessage to simulate the ENTER key press

I have an app that keeps popping up a windows with a 'Yes' or 'OK' button
on it. I am trying to write a little app that automates hitting the enter
key so I don't have to do it myself.

I used the FindWindow method to get a handle of the window and then issued:
SendMessage(hwn d, 273, 0, IntPtr.Zero)

to send an ENTER key to it but it didn't work.

If I need to get the handle of the 'OK' button, how do I do it? (How do you
loop through the buttons and find the handle you need?) If I just need to
send an ENTER key to the window, is the method above correct. hwnd is the
handle of the popup window and 273 is the decimal value for ENTER (0x111).

Thanks.

John Dalberg
Sep 26 '06 #1
3 29858
John,

You should not use SendMessage to simulate user input. Rather, take a
look at the SendInput API function to simulate user input (key presses,
mouse input, etc, etc).

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"John Dalberg" <no****@nospam. ssswrote in message
news:20******** ***********@new sreader.com...
>I have an app that keeps popping up a windows with a 'Yes' or 'OK' button
on it. I am trying to write a little app that automates hitting the enter
key so I don't have to do it myself.

I used the FindWindow method to get a handle of the window and then
issued:
SendMessage(hwn d, 273, 0, IntPtr.Zero)

to send an ENTER key to it but it didn't work.

If I need to get the handle of the 'OK' button, how do I do it? (How do
you
loop through the buttons and find the handle you need?) If I just need to
send an ENTER key to the window, is the method above correct. hwnd is the
handle of the popup window and 273 is the decimal value for ENTER (0x111).

Thanks.

John Dalberg

Sep 26 '06 #2
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote:
John,

You should not use SendMessage to simulate user input. Rather, take
a look at the SendInput API function to simulate user input (key presses,
mouse input, etc, etc).

Why shouldn't I use SendMessage?

>
Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"John Dalberg" <no****@nospam. ssswrote in message
news:20******** ***********@new sreader.com...
I have an app that keeps popping up a windows with a 'Yes' or 'OK'
button
on it. I am trying to write a little app that automates hitting the
enter key so I don't have to do it myself.

I used the FindWindow method to get a handle of the window and then
issued:
SendMessage(hwn d, 273, 0, IntPtr.Zero)

to send an ENTER key to it but it didn't work.

If I need to get the handle of the 'OK' button, how do I do it? (How do
you
loop through the buttons and find the handle you need?) If I just need
to send an ENTER key to the window, is the method above correct. hwnd
is the handle of the popup window and 273 is the decimal value for
ENTER (0x111).

Thanks.

John Dalberg
Sep 26 '06 #3
John,

When you click a key on the keyboard, it sends a key down, a key press,
and a key up message. You are only sending one message and it doesn't look
right to the code that is trying to interpret it.

If you use SendInput, it will send all the appropriate windows messages
associated with a key click.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"John Dalberg" <no****@nospam. ssswrote in message
news:20******** ***********@new sreader.com...
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard .caspershouse.c omwrote:
>John,

You should not use SendMessage to simulate user input. Rather, take
a look at the SendInput API function to simulate user input (key presses,
mouse input, etc, etc).


Why shouldn't I use SendMessage?

>>
Hope this helps.

--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard. caspershouse.co m

"John Dalberg" <no****@nospam. ssswrote in message
news:20******* ************@ne wsreader.com...
>I have an app that keeps popping up a windows with a 'Yes' or 'OK'
button
on it. I am trying to write a little app that automates hitting the
enter key so I don't have to do it myself.

I used the FindWindow method to get a handle of the window and then
issued:
SendMessage(hwn d, 273, 0, IntPtr.Zero)

to send an ENTER key to it but it didn't work.

If I need to get the handle of the 'OK' button, how do I do it? (How do
you
loop through the buttons and find the handle you need?) If I just need
to send an ENTER key to the window, is the method above correct. hwnd
is the handle of the popup window and 273 is the decimal value for
ENTER (0x111).

Thanks.

John Dalberg

Sep 26 '06 #4

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

Similar topics

1
3999
by: bill ramsay | last post by:
Dear all. I am using an existing hodge-podge of an application that runs on top of an Access database. This application dials up customer equipment, handshakes then downloads/uploads various bits of information in the access database. The original application is designed for some poor sod to sit there for hours and manually do the necessary.
5
19400
by: Mark Overstreet | last post by:
I am trying to click a button in another window and I have it's hWnd value so I was trying to use Send message. Here is my code but it doesn't work as expected... response = Win32API.SendMessage(hWndYesButton,Win32API.BM_SETSTATE,0,null); response = Win32API.SendMessage(hWndYesButton,Win32API.WM_LBUTTONDOWN,1,"11"); response = Win32API.SendMessage(hWndYesButton,Win32API.WM_LBUTTONDOWN,1,null); response =...
1
1651
by: Laszlo Henning | last post by:
I would like to make it possible to jump from a field to another field (the next one in the tab index) using enter also and not only tab. How can this be done either without onkeydown or with it. Laszlo Henning
3
5325
by: Rob | last post by:
Hi all, I am having trouble converting the code below (found on http://vbnet.mvps.org/index.html?code/core/sendmessage.htm) into a format that will work using vb .NET. Can anyone have a look at it and let me know what I need to change. I have tried changing the "hwnd" type into intptr's but there seem to be other problems too, like it won't allow "lParam As Any" to be declared.
18
6555
by: Lars Netzel | last post by:
Hello! Thanx to this newgroup I have finally, with the help of you guys, gotten this to work halfway.. but the final action is still not working, clicking the "Button2" thru SendMessage(). Private Declare Auto Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal lpClassName As String, ByVal lpWindowName As String) As Integer Private Declare Auto Function FindWindowEx Lib "user32" (ByVal hWnd1 As
0
2743
by: neonspark | last post by:
I'm buidling some simple macro functionality for my app so the users can record a sequence of keyboard inputs and replay them reliably via some menu. Originally, I used: protected override bool ProcessCmdKey(ref Message msg, Keys keyData) To map "Keys" objects to their string constant, and stored them on a string Queue as they were happening. Then (after resetting the form), I simulate replaying of these actions by flushing the queued...
2
4719
by: jonathan184 | last post by:
Hi I am try to create a script to login EMS admin tool *JMS* Now the admin account has a blank password. so if i login normal usually i type this: i press enter username(ADMIN) prompt - i press enter password - i press enter then i am int he system , so basically i press enter twice at the prompts* default admin acct this is what i am using*
3
6074
by: =?Utf-8?B?SmFrb2IgTGl0aG5lcg==?= | last post by:
I have two sets of search criteria on my page. They are placed inside two DIV tags made visible/hidden by a client script. In each DIV tag I have a LinkButton that performs the search from each set. By using AJAX I get the resulting list expand and collapse without page reload. All work smoothly. But one user today complained that the submit behaviour doesn't work like before.
0
8251
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8182
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8688
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8352
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8494
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
4085
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4188
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2614
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1496
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

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.