What is the difference between OnInitialUpdate and OnUpdate?

Answers were Sorted based on User's Feedback



What is the difference between OnInitialUpdate and OnUpdate?..

Answer / adil mir ajk uni mzd

OnInitialUpdate( ) is a virtual view function Called by the
framework after the view is first attached to the document,
but before the view is initially displayed. The default
implementation of this function calls the OnUpdate member
function
OnUpdate() is called by the framework when the doc has been
modified.It is actually called by UpdateAllViews() to
reflect changes in all the views associated with the doc.

Is This Answer Correct ?    3 Yes 0 No

What is the difference between OnInitialUpdate and OnUpdate?..

Answer / satheeshkedarisetti

Both are uses for to update the view. OnInitialUpdate()
updates the view while initialization, this function called
by framework while initialization. but default
implemenation calls OnUpdate function. if the window is
resizable or it has scroll bars, use OnUpdate() to change
the scroll limits and document changes.

Is This Answer Correct ?    2 Yes 0 No

What is the difference between OnInitialUpdate and OnUpdate?..

Answer / krishna akkulu

Both update the view, But

OnInitialUpdate, called when the view is first created
OnUpdate, called when the document updates its views

Is This Answer Correct ?    3 Yes 1 No

What is the difference between OnInitialUpdate and OnUpdate?..

Answer / priyanka

OnInitialUpdate() is called after a view is first attached
to the doc and before it gets displayed.We can override it
to put some initializations containing info abt the doc.It
calls OnUpdate().
OnUpdate() is called by the framework when the doc has been
modified.It is actually called by UpdateAllViews() to
reflect changes in all the views associated with the doc.

Is This Answer Correct ?    1 Yes 0 No

What is the difference between OnInitialUpdate and OnUpdate?..

Answer / jianhua wang

OnInitialUpdate( ) is a virtual view function Called by the
framework after the view is first attached to the document,
but before the view is initially displayed. The default
implementation of this function calls the OnUpdate member
function
OnUpdate( ) is a virtual view function Called by the
framework after the view's document has been modified; this
function is called by CDocument::UpdateAllViews and allows
the view to update its display to reflect those modifications.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More MFC Interview Questions

How do you change the properties for a tree view control that is part of the CTreeView class?

1 Answers  


What is the initial function to be called in MFC and what it will do

11 Answers   Infosys,


What function is called by a document class to notify views that the document has been changed?

2 Answers  


What is the base class for MFC Framework ?

2 Answers   Mphasis,


What function is used to retrieve the currently selected index in a list box?

2 Answers  






What is the base class for MFC Framework ?

4 Answers  


1) How do you Destroy a Dialog Box ?

2 Answers   Honeywell,


What types of threads are supported by MFC framework?

2 Answers  


What is Multithreading

1 Answers   Invensys,


What is the range of intensity of RGB

1 Answers  


how to give colour for dialog button or static buuto?any one explain full code ?pls pls

3 Answers  


what is the use of AFX_MANAGE_STATE ?

4 Answers   HCL,


Categories