PDA

View Full Version : What does Updatedata function in MFC equal with Qt?



nthung
6th June 2010, 12:50
In MFC we have Updadate function, but in Qt I don't which functions equals with that?
thanks

squidge
6th June 2010, 12:58
None.

UpdateData causes a call to your DoDataExchange method to populate the controls.

On Qt, you just write the DataExchange method and call that (or whatever other name you wish to call it).