I'm wondering what the correct way of creating Gui's in with Win32 API. Right now I just call the CreateWindowEx in my WM_CREATE event, but I don't think this is the right way to do it. Just as an example, what would be the correct way of adding a 100x20 EditField and getting text from it? Would you create it on WM_Create then use GetText()?

Thanks

link|improve this question

I have a tutorial on that at aleax.it/TutWin32 but, alas, it's in Italian only - can't translate 46 chapters in English and squash the result into one SO answer;-). If you use Google Chrome you could try its automatic English translation, just for fun -- EDIT controls are in chapter 22 and following;-). – Alex Martelli Apr 19 '10 at 1:14
1  
possible duplicate of stackoverflow.com/questions/342729/learning-the-win32-api – Billy ONeal Apr 19 '10 at 1:15
feedback

5 Answers

up vote 2 down vote accepted

Here is another site with pretty good examples - http://www.winprog.org/tutorial/start.html It also looks like they have an Italian translation :)

This has to be duplicate of many posts if we are all going to post sample web sites for Win32

link|improve this answer
feedback

Some pretty good examples here:

http://www.rohitab.com/discuss/index.php?showtopic=11454

link|improve this answer
feedback

Also, I highly recommend getting a copy of Petzold if you're going to subject yourself to the Windows API:

http://www.amazon.com/Programming-Windows-Microsoft-Charles-Petzold/dp/157231995X

link|improve this answer
feedback

If you are creating a simple gui with the windows api, then use a resource editor to create your dialog box resource, and then replace your apps window class registration and window creation code with a simple call to DialogBoxParam. DialogBoxParam will read the dialog resource and create the dialog automatically scaling everything to the users font settings, handle the message loop and do other things like automatic support of tabbing between controls.

link|improve this answer
one thing - you have to update valid theme fonts yourself for the controls, otherwise you will get default fonts from .res dialog box description – Bartosz Wójcik Apr 28 '10 at 22:44
feedback

You don't need to do it in the WM_CREATE event, but you can. I usually create any child windows in the same scope where the main window was created. For example:

HWND mainWindow = CreateWindowEx(...);
HWND editField = CreateWindowEx(...); // use mainWindow for the hWndParent param
                                      // the hMenu parameter sets child window id
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.