What is the use of UpdateData funciton ?
Answers were Sorted based on User's Feedback
Answer / suyambu
UpdateData function is used to get or set the values in
your appropriate control variables. UpdateData ( FALSE )
would update the data from control variables to control,
while UpdateData ( TRUE ) would assing the data from
controls to control variable.
This function need not be called if you are using DDX (
Dynamic Data Exchange ).
| Is This Answer Correct ? | 46 Yes | 5 No |
Answer / manish
UpdateData() by default it has argument "TRUE": UpdateData
(TRUE)This Function is used in Do data exchange. UpdateData
(TRUE) transfer the control value to a variable .
UpdateData(FALSE) transfer the variable value to control to
display at presentation layer.
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / suman
answer #2 is different from 1 & 3
which is correct?
| Is This Answer Correct ? | 6 Yes | 2 No |
Answer / rainz
The use of this function is to initialize data in a dialog box, or to retrieve and valid the same data.
Before the dialog is visible, the UpdateData (bSaveAndValidate) ,has bSaveAndValidate set as False(dialog initialization),but as soon as the "OK" button code gets executed "bSaveAndValidate" is set to true.(data retrieval)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / suresh
UpdateData(): By default the parameter is FALSE; Which means
it is transfering the variables to controls;
UpdateData(TRUE): data Flowing from controls to varibles;
| Is This Answer Correct ? | 11 Yes | 13 No |
Answer / arvin
BOOL UpdateData( BOOL bSaveAndValidate = TRUE );
UpdateData(TRUE) indicate dialog box is being initialized
UpdateData(FALSE) indicates data is being retrieved from the
dialog box.
Call this member function to initialize data in a dialog
box, or to retrieve and validate dialog data.
| Is This Answer Correct ? | 10 Yes | 20 No |
What is the difference between GetMessage and PeekMessage ?
What is LPCTSTR? What does LP denote it?
how many types of messages are their
what is the use of AFX_MANAGE_STATE ?
What is a message map?
What is Thread ?(VC++)What is the difference between Cmutex and Csemaphone?
How can i implement the dynamic menus in MFC plz give the code
1)set the Title for The File DialogBox, in MFC?
Tell me the different controls in MFC ?
if both base and derived class have the constructors if i create an object for derive class which class constructor is executed first
Hi All, I have created one MFC Dialog Based application.now if i am running the application its working fine,instead of closing he application i minimized the application,if i run the application again,i am getting the Dialog. I want to prevent the calling of application multiple times. please give me the code and let me know in which method i need to make changes. Praveer
What is LoadLibrary function returns?