How to call DoDataExchange() of a property page at runtime
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
Hi, I have to add property pages to a property sheet at runtime. How can I exchange data of this page at runtime?
-
Hi, I have to add property pages to a property sheet at runtime. How can I exchange data of this page at runtime?
DoDataExchange() is not supposed to be called directly. You can use UpdateData().
-
Hi, I have to add property pages to a property sheet at runtime. How can I exchange data of this page at runtime?
You cannot do this. You will have to do this using the functions instead. Internally, the DDX_xxx wrappers do exactly this. So for controls created dynamically you will have to do this yourself.
«_Superman_» _I love work. It gives me something to do between weekends.