473,407 Members | 2,320 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,407 software developers and data experts.

PostMessage and Combobox

In my ComboBox, I am trying to post the CBN_EDITCHANGE message after the
CBN_SELCHANGE is received, but I am having no luck. I can trap for the
CBN_SELCHANGE message, but I cannot post the CBN_EDITCHANGE message. I think
my PostMessage parameters are wrong, but I cannot find what they should be.
Any help would be greatly appreciated. Thanks.

Here is my code. I am using VS 2003 and Visual Basic.

Private Declare Function PostMessage Lib "user32" Alias "PostMessageA" _
(ByVal hwnd As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) As Long
Protected Overrides Sub WndProc(ByRef m As Message)
MyBase.WndProc(m)

Const CBN_SELCHANGE As Int32 = &H1
Const CBN_EDITCHANGE As Int32 = &H5
Const CBN_EDITUPDATE As Int32 = &H6
Const CBN_CLOSEUP As Int32 = &H8
Const CBN_SELENDOK As Int32 = &H9
Const WM_COMMAND As Int32 = &H111
Const WM_USER As Int32 = &H400
Const OCM__BASE As Int32 = WM_USER + &H1C00
Const OCM_COMMAND As Int32 = OCM__BASE + WM_COMMAND

If m.Msg = OCM_COMMAND Then
Dim CbAction As Int32 = (m.WParam.ToInt32 >> 16) ' combobox
action
Select Case CbAction
Case CBN_SELCHANGE
PostMessage(Me.Handle.ToInt32, OCM_COMMAND,
CBN_EDITCHANGE << 16, 0)
Case CBN_EDITCHANGE
Case CBN_CLOSEUP
Case CBN_SELENDOK
End Select
End If
End Sub

Feb 3 '06 #1
3 2897
"EAdolphson" <EA********@discussions.microsoft.com> schrieb
In my ComboBox, I am trying to post the CBN_EDITCHANGE message after
the CBN_SELCHANGE is received, but I am having no luck. I can trap
for the CBN_SELCHANGE message, but I cannot post the CBN_EDITCHANGE
message. I think my PostMessage parameters are wrong, but I cannot
find what they should be. Any help would be greatly appreciated.
Thanks.

Here is my code. I am using VS 2003 and Visual Basic.

Private Declare Function PostMessage Lib "user32" Alias
"PostMessageA" _
(ByVal hwnd As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) As Long


I didn't check the code (if there's a .Net way to do it) but the declaration
is for previous VB versions. Use this one instead:

Private Declare Function PostMessage Lib "user32" Alias
"PostMessageA" _
(ByVal hwnd As intptr, _
ByVal wMsg As integer, _
ByVal wParam As integer, _
ByVal lParam As integer) As boolean

Armin

Feb 3 '06 #2
Searching the 'net, my declaration is correct VB .NET. All the params need
to be declared as Long not Integer. I still need help getting the parameter
values.

"Armin Zingler" wrote:
"EAdolphson" <EA********@discussions.microsoft.com> schrieb
In my ComboBox, I am trying to post the CBN_EDITCHANGE message after
the CBN_SELCHANGE is received, but I am having no luck. I can trap
for the CBN_SELCHANGE message, but I cannot post the CBN_EDITCHANGE
message. I think my PostMessage parameters are wrong, but I cannot
find what they should be. Any help would be greatly appreciated.
Thanks.

Here is my code. I am using VS 2003 and Visual Basic.

Private Declare Function PostMessage Lib "user32" Alias
"PostMessageA" _
(ByVal hwnd As Long, _
ByVal wMsg As Long, _
ByVal wParam As Long, _
ByVal lParam As Long) As Long


I didn't check the code (if there's a .Net way to do it) but the declaration
is for previous VB versions. Use this one instead:

Private Declare Function PostMessage Lib "user32" Alias
"PostMessageA" _
(ByVal hwnd As intptr, _
ByVal wMsg As integer, _
ByVal wParam As integer, _
ByVal lParam As integer) As boolean

Armin

Feb 3 '06 #3
"EAdolphson" <EA********@discussions.microsoft.com> schrieb
Searching the 'net, my declaration is correct VB .NET. All the
params need to be declared as Long not Integer.


No.

You may also declare wparam and lparam as IntPtr. See
System.Windows.Forms.Message.
Armin

Feb 3 '06 #4

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

Similar topics

2
by: Paul | last post by:
Hi all. Probably a quick one, I'm using PostMessage to send keys to an applicatoin but how do I convert the key string to a long values so that I can pass this to the wParam. The definition is...
15
by: James | last post by:
In my code I have a problem in abtaining a windows handle. I do not know the namespace to obtain the windows hanle. here is the code. using System; using System.Collections; using...
12
by: Wilfried Mestdagh | last post by:
Hi, Using P/Invoke I use PostMessage to send a message from one thread to another. I'm pretty sure this has already worked in dotnet. but I've upgraded version 2 few day ago. Now I have an...
2
by: Lenster | last post by:
When using PostMessage to post myself a message, the msg and wparam parameters somehow get swapped over. They are in the correct order when calling PostMessage but by the time wndproc handles the...
3
by: Max M. Power | last post by:
When I use the SendMessage API I can sucessfully send and receive a user defined message. When I use the PostMessage API I can NOT sucessfully send and receive the same user defined message. ...
3
by: easoftware | last post by:
In my ComboBox, I am trying to post the CBN_EDITCHANGE message after the CBN_SELCHANGE is received, but I am having no luck. I can trap for the CBN_SELCHANGE message, but I cannot post the...
3
by: knikkix | last post by:
Hi, I created a form in VB.Net with only one button. This is the code in button click event Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
10
by: Sergei | last post by:
Can anyone explain why PostMessage to a Windows Form is considered unsafe and raises InvalidOperationException? I can get rid of that setting CheckForIllegalCrossThreadCalls to false and...
21
by: one2001boy | last post by:
PostMessage() function returns ERROR_NOT_ENOUGH_QUOTA after running in a loop for 700 times, but the disk space and memory are still big enough. any suggestion to resolve this problem? thanks.
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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...
0
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...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

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.