What is command routing in VC++

Answers were Sorted based on User's Feedback



What is command routing in VC++..

Answer / geetha

command routing is passing the command to command targeted
objects until the comand is handled.If no command targeted
objects handle the command finally it reaches the
application object which by default ignores the command.

the above answer is different scenarios of command routing.

Is This Answer Correct ?    16 Yes 2 No

What is command routing in VC++..

Answer / indira

This goes in SDI.....

when an event occurs first the command goes to frame, frame
passes it to view, if it doesnt handle the event it passes
to document, if it also doesnt handle it again passes to
doctemplate. if it doesnt handles it returns false to
document, document returns false to view, view also returns
false to frame then frame handles the event, if not it
passes to application object, if it also doesnt handle
default window procedure will handle.

Is This Answer Correct ?    4 Yes 1 No

What is command routing in VC++..

Answer / khan

in SDI:
View -> Doc -> FrameWnd -> App.

In MDI:
CView->CDocument->CMDIChildWnd ->CMDIFrameWnd -> CWinApp.

Is This Answer Correct ?    8 Yes 6 No

Post New Answer

More VC++ AllOther Interview Questions

Difference between getmessage, postmessage & peakmessage.

0 Answers  


What is an overlapped image?

1 Answers  


Explain pointer to the constant and constant pointer?

0 Answers  


Is it safe to uninstall microsoft visual c++ 2008 redistributable?

0 Answers  


What is difference between c++ and visual c++?

0 Answers  






Difference between critical section, mutex and semaphore.

0 Answers  


What is cwinthread class? Explain its advantages.

0 Answers  


Explain pointer to the constant and constant pointer? Explain difference between them.

0 Answers  


How do you define a function in vc++?

1 Answers  


What is microsoft visual c++ redistributable and do I need it?

0 Answers  


Where can I find microsoft visual c++ on my computer?

0 Answers  


What is a microsoft visual c++ 2008 redistributable?

0 Answers  


Categories