C++ Help
-
I have written a program with Visual C++. Where on this website can I look for articles that inform me of how to create a skin for the executable file? Where can I find articles that will inform me of how to create the dialogue box which will give the user the option of saving, printing output?
-
I have written a program with Visual C++. Where on this website can I look for articles that inform me of how to create a skin for the executable file? Where can I find articles that will inform me of how to create the dialogue box which will give the user the option of saving, printing output?
On that page... Don't try it, just do it! ;-)
-
I have written a program with Visual C++. Where on this website can I look for articles that inform me of how to create a skin for the executable file? Where can I find articles that will inform me of how to create the dialogue box which will give the user the option of saving, printing output?
C++/MFC Articles just look through them and pick what you like... /* Just a Human Trying to Live in a Computers World. */
-
I have written a program with Visual C++. Where on this website can I look for articles that inform me of how to create a skin for the executable file? Where can I find articles that will inform me of how to create the dialogue box which will give the user the option of saving, printing output?
try using the CFileDialog class.....u can use it for saving and opening files.....already defined browser for that..... search for it in MSDN... HOPE THAT HELPZ.... cheerz..... :-D "faith, hope, love remain, these three.....; but the greatest of these is love" -1 Corinthians 13:13
-
I have written a program with Visual C++. Where on this website can I look for articles that inform me of how to create a skin for the executable file? Where can I find articles that will inform me of how to create the dialogue box which will give the user the option of saving, printing output?
I found this article and sample source ... http://www.codeproject.com/dialog/skinsyse.asp Very useful when I wrote my first skinned app. I had to extended the functionality a lot to accomodate all the features I eventually required but it was a great starting point. You simply derive your main dialog class from the SkinDialog class provided in the article. Steve T