What is DlgProc?



What is DlgProc?..

Answer / Jairam Paswan

"In Microsoft Windows, a dialog procedure (DlgProc) is a function that processes messages sent to a dialog box created by the CreateDialog or DialogBox functions.nnA dialog procedure receives messages related to the dialog box's events such as button clicks, focus changes, and window resizing. The dialog procedure must be defined as the callback function in the corresponding dialog template (.rc file)."n

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More C++ General Interview Questions

What does int * mean in c++?

1 Answers  


write a porgram in c++ that reads an integer and print the biggest digit in the number

1 Answers  


Explain how the virtual base class is different from the conventional base classes of the opps.

1 Answers  


Distinguish between a # include and #define.

1 Answers  


What do c++ programmers do?

1 Answers  


What is a conversion constructor?

1 Answers  


What is unary operator? List out the different operators involved in the unary operator.

1 Answers  


What is meant by entry controlled loop?

1 Answers   Agilent, ZS Associates,


Evaluate: int fn(int v) { if(v==1 || v==0) return 1; if(v%2==0) return fn(v/2)+2; else return fn(v-1)+3; } for fn(7); a) 10 b) 11 c) 1

4 Answers   Quark,


Describe delete operator?

1 Answers  


How is c++ different from java?

1 Answers  


Explain Text Manipulation Routines?

1 Answers  


Categories