I was looking at a thread on this forum, and someone mentioned that you can use CreateWindow() or CreateWindowEx(), whichever you choose. Is there a difference? If there is, what is it?
Printable View
I was looking at a thread on this forum, and someone mentioned that you can use CreateWindow() or CreateWindowEx(), whichever you choose. Is there a difference? If there is, what is it?
CreateWindow() was used in Win16, CreateWindowEx() is Win32 version. CreateWindow() was thrown in to provide compatibility.
Ah, ok, got it now :)
To my understanding, it allows you to provide an extended style, whereas CreateWindow does not.
I have to use CreateWindowEx, because intellisense doesnt give me a parameter for "nHeight" in CreateWindow =(.
Z.