How we call a dialog in another dialog?
Answers were Sorted based on User's Feedback
Answer / hitesh dedhia
Using DoModal() function.
create a class of another dialog box.
and write a code in fist dialog box function.
Classname(second) variable_name;
variable_name.DoModl();
and define the new header file in fisrt dialog bob code.
like;
#include "classname.h"
| Is This Answer Correct ? | 11 Yes | 0 No |
Answer / dsk
Create a new dialog and this new dialog header file ie .h
file will be added to the main dialog.
Then in main dialog on button click, create an
varaible,varaible.Domodal()function.
| Is This Answer Correct ? | 6 Yes | 0 No |
Given two processes, how can they share memory?
What is socket?
what is the difference between compiling and building?
Why not virtual functions to handle messages?
Tell me the different controls in MFC ?
Which CPrintInfo member variable must be set for multiple page printouts?
In SDI how many view's are attached to document object and in MDI how many view's are attached to Document object?
What is LPCTSTR? What does LP denote it?
What is the initial function to be called in MFC and what it will do
What is a message map?
1)How to change a text of a button as Dynamically?
How to convert the content of buffer into lower case character.