I'm trying to create a simple windows text game for a friend of mine...

I'm able to handle text boxes, normal click buttons, etc., but I can't seem to figure out how to create radio buttons.

What I want is that there is a question the game asks, and gives you a list of say 2, 3 options for the right answer. Next to each possible answer is a radio button. If they click the correct radio button, I want them to be able to continue; if not, I want it to tell them that they're incorrect. I think I can handle figuring out which button they choose, what I can't figure out is how to create the dumb button!

I've looked on MSDN but it's so damn hard to navigate that I didn't have any luck...

My guess is it's something in the makeintresource() function right, and you have to make the correct button ID in the resource file. But i don't know what the button ID is so that windows knows to make a radio button.

Thanks for your help in advance!