window message

  • Thread starter Thread starter Dean L. Howen
  • Start date Start date
D

Dean L. Howen

Dear friends,
I'm trying to find window message in MSDN, but I find nothing.
Could you give me some ideas how to look up?
For example: Window message for Copy, Cut, Paste ... event
Thanks
 
Hi,

You can find all the messages downloading the Windows SDK, ie: XP or Win2K
or win2K3. Or create a C++ project, put the constant and hover with your
mouse and you will get the values

WM_CUT 0x0300
WM_COPY 0x0301
WM_PASTE 0x0302

Hope this helps
Salva
 
Thanks. It's useful.

Salvador said:
Hi,

You can find all the messages downloading the Windows SDK, ie: XP or Win2K
or win2K3. Or create a C++ project, put the constant and hover with your
mouse and you will get the values

WM_CUT 0x0300
WM_COPY 0x0301
WM_PASTE 0x0302

Hope this helps
Salva
 
Back
Top