I'm very new to C++ (Started today. :D), and have just been messing around with simple functions. I've made six separate console applications, each converting from one form of temperature to another, (K to C, K to F, C to K, C to F, F to C, F to K) and all the math checks out great. I'm trying to move to the next phase, and thats creating a Window for the application to run from. I've found the lack of reputable tutorials on this kinda surprising, and I've had to use a template to get as far as I am now:
http://img571.imageshack.us/img571/2802/capturepcv.png
I'm alright with the lack of menus and everything, but I can't for the life of me find a tutorial that allows me to add things to the window, let alone add drop-boxes.
I'm hoping to have a final product similar to this:
http://a.imageshack.us/img175/3311/capturebgh.png
The text box under "Convert from" is where the variable would go. And the drop box next to it is where the user would say either, "Celsius", "Fahrenheit", or "Kelvin". Then the "Convert to" box would have the output temperature, and depending on the combination of the two types of temperature, it would choose one of the six codes, and the answer would go in the box marked, "Answer"
Any help is much appreciated.
EDIT: I need help with almost everything, except for the initial window, I will continue to search for tutorials though.