Is there a CommonDialog to C++ and how do I use it??
Printable View
Is there a CommonDialog to C++ and how do I use it??
I can only answer the first question and it's yes but how... sorry don't know yet.
There's a tutorial at http://winprog.org/tutorial/ that tells you how to do it. I assume it's done the right way - I'm new to C++ :D
These are the functions to look up in MSDN:
Color Dialog: ChooseColor()
Font Dialog: ChooseFont()
Find Box: FindText()
Replace Box: ReplaceText()
Open/Save As Dialog: GetOpenFileName()/GetSaveFileName()
Printer Dialogs: PageSetupDlg(), PrindDlgEx(), PrintDlg()
Thanks! :D