TuxedoTemplar
Programmer
Well I'm relatively new at API programming, so bear with me here. I'm doing a few C++ windows API programs that I had been planning to do for a while now, but I've hit been running into more problems than I think I can get resolved in a reasonable time frame, so I've instead been collecting them so I can get some help from someone who would hopefully know these (they're fairly easy I would imagine.) I read theForger's win API tutorial for everything that I know already about win API programming, just so you can see where I'm coming from. Anyway here they are:
Thx a lot to whoever can help me out!
- How do I open an URL in a web browser from within my program?
- Having gotton the Open and Save dialogs to work (gets the file's name), how do I perform file IO? (like what functions do I use and some important things I might need to know about them, but not the full gory picture
)
- Besides for displaying bitmaps, why would I want to use a graphics context and how would I go about doing it (in a nutshell)?
- What function(s) would I use to toggle a menu command on/off (grayed or un-grayed)?
- What are a list of functions for editing/changing a dialog's controls (like their properties, values, fields, size, location, color, font, alignment, etc.)?
- What function do I use to switch between open dialogs within the parent window?
For Microsoft Visual C++ resource editor, how do I: - Make resource a dialog and its controls scale when I resize the parent window or the dialog itself (like if I wanted a list box to always be located 25% of the way inward inside the dialog and if I wanted it also to scale at its 25% position according to the dialog's size)?
- How do I stop MSV C++ from reverting all my IDs to their raw integer equivalents? (that is, if I enter in "ID_BLAHBLAH", with the value 102 in its definition, and once I reopen that resource the ID field where I entered "ID_BLAHLBAH" has now changed to 102)
Thx a lot to whoever can help me out!