Click to See Complete Forum and Search --> : CreateWindowEx, lpClassName question.


ADSOFT
August 12th, 2010, 05:35 AM
I don't have much WIN API develepment experience, most of the stuff I do is MFC stuff.

My question is:

Where can I find all the possible "predifined class names" as stated by Microsoft?

If lpClassName is a string, it specifies the window class name. The class name can be any name registered with the RegisterClass function or any of the predefined control-class names.

S_M_A
August 12th, 2010, 01:59 PM
If I don't remember wrong that information can be found further down on the page where you found that text. It's a table with BUTTON, EDIT, LISTBOX and so on

VictorN
August 12th, 2010, 02:40 PM
http://www.minigui.org/docs/mpg-2.0-5.shtml
http://msdn.microsoft.com/en-us/library/ms632679(VS.85).aspx

ADSOFT
August 14th, 2010, 12:10 AM
Thanks guys