Do any of you guys have a C++ example, which calls an input window within a menu window (preferably buildt into the CASE/Switch message structure of your windows program)?
BR Kurt
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Do any of you guys have a C++ example, which calls an input window within a menu window (preferably buildt into the CASE/Switch message structure of your windows program)?
BR Kurt
Usually one would use dialogs for input. See DialogBox or DialogBoxParam winapi functions. No sample here, I use wrapper classes instead.
rpeter
Thanks rpeter
What is a "wrapper" (do you have an exampel)?
BR Kurt
wrapper :
An object that encapsulates a second object and delegates to it to alter its interface or behavior in some way.
Here:: http://java.about.com/library/glossary/bldef-wrapper.htm
j@ck_