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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Windows Messages in C#? 1

Status
Not open for further replies.

bledazemi

Programmer
Jul 14, 2005
93
GB
Hi guys,

I am new to C#, I am trying to write an small program which involves use of SendMessage routine here and there. My problem is that I am having to define all WM_ windows messages constants that I need to use (e.g. as below).


public const int WS_CHILD = 0x40000000;
public const int WS_VISIBLE = 0x10000000;


Can you guys tell me if WM_ constants have been predefined in some namespace that I may use?

Thank you in advance your help is much appreciated.


 
They aren't, but a site which can help is:


Chip H.


____________________________________________________________________
If you want to get the best response to a question, please read FAQ222-2244 first
 
Thanks for the tip Chip H.

"It is in our collective behaviour that we are most mysterious" Lewis Thomas
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top