System.Windows.Forms.Message Properties values

  • Thread starter Thread starter Sean
  • Start date Start date
S

Sean

Hi,

I would like to know all the available values for
Message.Msg, Message.LParam, Message.WParam.
Where can I find all the values? (complete information)

In the .NET documentation, it says that
//Constant value was found in the "windows.h" header file.
But where is this windows.h?

Thank you in advance for any help.



regards,
Sean
 
Sean,

get Platform SDK - it's legacy Win32 SDK. Most of messages are defined in
winuser.h. You can get it from MS site.

HTH
Alex
 
Hi, Sean

You need Core SDK. I suggest to start from it. All SDKs on page are Win32
they just cover different additional aspects of Win32 programming - I think
it should be pretty obvious from their names. .Net docs do not include A LOT
of information on Windows programming and internals.

If you need quick reference for Windows messages - check www.pinvoke.net -
e.g. Constants / WM section where most of messages are listed.

HTH
Alex
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top