Save/Load Dialog
-
Hi every1, lets say i have a Dialog based Win32 application and i want to save and retrive the dialog data (the values of the edit ctrls inside the dialog). Is there any way i can dump the whole dialog into some file and read it later and show it? -Tareq
-
Hi every1, lets say i have a Dialog based Win32 application and i want to save and retrive the dialog data (the values of the edit ctrls inside the dialog). Is there any way i can dump the whole dialog into some file and read it later and show it? -Tareq
I personally would use INI file to do that...
-
Hi every1, lets say i have a Dialog based Win32 application and i want to save and retrive the dialog data (the values of the edit ctrls inside the dialog). Is there any way i can dump the whole dialog into some file and read it later and show it? -Tareq
If you are using MFC you can use
CObject::Serialize()
Ant.