Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

SDK 1

Status
Not open for further replies.

dynamicjourney2001

Programmer
May 15, 2003
30
0
0
US
Hi,

Does anyone knows what's the message # for Tab!?
Im using send() and i need the msg#. I check the winuser.h and it shows there the VK_TAB with hexadecimal 0x09.
 

hi!

this is that u need.

Send(Handle(this),256,9,Long(0,0))

regarrds
 
Thanks for the reply,
but can you show me how you came up with these decimal numbers? and where it was found?
 

i got them in headers files ( Visual C ).

Send ( handle, message#, lowword, long )
handle = we need the datawindow handle
message = I got it WM_KEYPRESS or some similar
LOWORD = 9, it's a TAB key

I used this when i want to capture the enter key and i want to change it with TAB key.






 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top