Hi All,
maybe this is a sill question..but if i have TextBox and use the
SendMessage(..) to send
a character the control.. the KeyDown event is not triggered.... in would
need to check in the WndProc(...) of the WM_CHAR event...
Is there another way to send characters to the TextBox, when I'm only having
the control's handle
which does simulated the user typing in characters so the KeyDown event gets
triggered?
Cheers,
Fred 4 35327
If you want the KeyDown event triggered, you need to send the
WM_KEYDOWN message.
Hi Chris,
thx...
using the WM_KEYDOWN.. how can i send a control key + a letter.. e.g Ctrl+G
??
Cheers,
Fred
"Chris Dunaway" <du******@gmail.com> wrote in message
news:11**********************@z14g2000cwz.googlegr oups.com... If you want the KeyDown event triggered, you need to send the WM_KEYDOWN message.
It appears as if you have to send 5 messages to get a Ctrl+G:
WM_KEYDOWN for the Ctrl key
WM_KEYDOWN for the G key
WM_CHAR for the Ctrl-G (7)
WM_KEYUP for the G key
WM_KEYUP for the Ctrl key
I could be wrong, but that is how it looked in Spy++ when I pressed
Ctrl+G on a textbox.
Here is how I duplicated that in code:
Dim GDownLParam As New IntPtr(&H220001)
Dim GUpLParam As New IntPtr(&HC0220001)
Dim CtrlDownLParam As New IntPtr(&H11D0001)
Dim CtrlUpLParam As New IntPtr(&HC11D0001)
Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_KEYDOWN,
&H11, CtrlDownLParam)
Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_KEYDOWN,
&H47, GDownLParam)
Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_CHAR,
&H7, GDownLParam)
Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_KEYUP,
&H47, GUpLParam)
Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_KEYUP,
&H11, CtrlUpLParam)
I have a set of classes that make it easy to call the Win32 API and
that is what I am using in this code. If you're interested in those
classes, I can send them.
Chris
Hi Chris,
that works great! Thx,
Cheers,
Fred
"Chris Dunaway" <du******@gmail.com> wrote in message
news:11**********************@g43g2000cwa.googlegr oups.com... It appears as if you have to send 5 messages to get a Ctrl+G:
WM_KEYDOWN for the Ctrl key WM_KEYDOWN for the G key WM_CHAR for the Ctrl-G (7) WM_KEYUP for the G key WM_KEYUP for the Ctrl key
I could be wrong, but that is how it looked in Spy++ when I pressed Ctrl+G on a textbox.
Here is how I duplicated that in code:
Dim GDownLParam As New IntPtr(&H220001) Dim GUpLParam As New IntPtr(&HC0220001) Dim CtrlDownLParam As New IntPtr(&H11D0001) Dim CtrlUpLParam As New IntPtr(&HC11D0001) Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_KEYDOWN, &H11, CtrlDownLParam) Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_KEYDOWN, &H47, GDownLParam) Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_CHAR, &H7, GDownLParam) Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_KEYUP, &H47, GUpLParam) Win32.User.SendMessage(TextBox1.Handle, Win32.User.WM_KEYUP, &H11, CtrlUpLParam)
I have a set of classes that make it easy to call the Win32 API and that is what I am using in this code. If you're interested in those classes, I can send them.
Chris This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: R.Wieser |
last post by:
Hello All,
I'm trying to get a "Virtual Listbox" to work. I've currently got a form,
and used CreateWindowExA to create a ListBox with the LBS_OWNERDRAWFIXED and
LBS_NODATA flags on it. I've...
|
by: Nidhi |
last post by:
Hi,
I am trying to write code to retrieve the small icon for an
application in C#. I am using SendMessage with WM_GETICON for this
purpose but the return value I get is 0. I don't understand...
|
by: Adam Clauss |
last post by:
I am attempting to set the text on a richedit control in another application
using EM_SETTEXTEX:...
|
by: TonyG |
last post by:
I need to send a message to a window in another application. The name of the
window is known at design time and set in the constant App2_MONITOR_CAPTION.
The message is defined as X_GenerateEvent....
|
by: Fred Heida |
last post by:
Hi All,
maybe this is a sill question..but if i have TextBox and use the
SendMessage(..) to send
a character the control.. the KeyDown event is not triggered.... in would
need to check in the...
|
by: Sean |
last post by:
I am trying to send a WM_COPYDATA message to another application in C#,
..NET 2.0.
The other application receives the message, but only seems to see the
first character of the string, does...
|
by: michelqa |
last post by:
Hi,
I need to call a lot of different native SendMessage to retreive
informations from non managed application.
Some win32 messages use struct pointer for lparam....how to create and...
|
by: michelqa |
last post by:
Hi,
I use sendMessage to retrieve information from another application.
For some obscur reasons, my code work only in a button click event and
nowhere else in my application. I mean I get...
|
by: michelqa |
last post by:
Hi,
I already post a similar question last week without success.
Ok I want to get the current text selection in a RICHEDIT control..
This can be easily done in C++ with EM_EXGETSEL message. I...
|
by: Rina0 |
last post by:
Cybersecurity engineering is a specialized field that focuses on the design, development, and implementation of systems, processes, and technologies that protect against cyber threats and...
|
by: isladogs |
last post by:
The next Access Europe meeting will be on Wednesday 2 August 2023 starting at 18:00 UK time (6PM UTC+1) and finishing at about 19:15 (7.15PM)
The start time is equivalent to 19:00 (7PM) in Central...
|
by: linyimin |
last post by:
Spring Startup Analyzer generates an interactive Spring application startup report that lets you understand what contributes to the application startup time and helps to optimize it. Support for...
|
by: erikbower65 |
last post by:
Here's a concise step-by-step guide for manually installing IntelliJ IDEA:
1. Download: Visit the official JetBrains website and download the IntelliJ IDEA Community or Ultimate edition based on...
|
by: kcodez |
last post by:
As a H5 game development enthusiast, I recently wrote a very interesting little game - Toy Claw ((http://claw.kjeek.com/))。Here I will summarize and share the development experience here, and hope it...
|
by: DJRhino1175 |
last post by:
When I run this code I get an error, its Run-time error# 424 Object required...This is my first attempt at doing something like this. I test the entire code and it worked until I added this -
If...
|
by: DJRhino |
last post by:
Private Sub CboDrawingID_BeforeUpdate(Cancel As Integer)
If = 310029923 Or 310030138 Or 310030152 Or 310030346 Or 310030348 Or _
310030356 Or 310030359 Or 310030362 Or...
|
by: lllomh |
last post by:
How does React native implement an English player?
|
by: Mushico |
last post by:
How to calculate date of retirement from date of birth
| | |