Click here to Skip to main content
15,917,481 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: VC++ 6.0 MMSYSTEM.LIB?? Pin
Garth J Lancaster23-May-08 21:45
professionalGarth J Lancaster23-May-08 21:45 
GeneralRe: VC++ 6.0 MMSYSTEM.LIB?? Pin
Bob Macklin24-May-08 4:56
Bob Macklin24-May-08 4:56 
GeneralRe: VC++ 6.0 MMSYSTEM.LIB?? Pin
Michael Schubert24-May-08 6:59
Michael Schubert24-May-08 6:59 
AnswerRe: VC++ 6.0 MMSYSTEM.LIB?? Pin
Michael Schubert24-May-08 6:48
Michael Schubert24-May-08 6:48 
GeneralRe: VC++ 6.0 MMSYSTEM.LIB?? Pin
Bob Macklin24-May-08 12:52
Bob Macklin24-May-08 12:52 
QuestionMultiple dialogs in an application Pin
Lord Kixdemp23-May-08 13:34
Lord Kixdemp23-May-08 13:34 
AnswerRe: Multiple dialogs in an application Pin
Mukesh Kumar23-May-08 18:20
Mukesh Kumar23-May-08 18:20 
AnswerRe: Multiple dialogs in an application Pin
zafersavas23-May-08 18:27
zafersavas23-May-08 18:27 
Hi,
It's called "Modeless Dialog". Search the forum for "how to create Modeless Dialogs".
Anyway here are the steps :
1) Add a "form" by right clicking on the class view
2) Include the header file name of the new form class to the source code where you would like to call the modeless dialog
3) To create and show the modeless dialog you should write a code piece like this:
void CTempDlg::OnButton1() 
{
	Modeless* modlessDlg = new Modeless(this);
	modlessDlg->Create(IDD_MODELESS_DIALOG, NULL); 
	modlessDlg->ShowWindow(SW_SHOW);
}

GeneralRe: Multiple dialogs in an application Pin
Lord Kixdemp23-May-08 18:36
Lord Kixdemp23-May-08 18:36 
AnswerRe: Multiple dialogs in an application Pin
Nelek24-May-08 0:39
protectorNelek24-May-08 0:39 
QuestionChanging a Dialog's Caption in MFC Pin
Larry Mills Sr23-May-08 7:54
Larry Mills Sr23-May-08 7:54 
AnswerRe: Changing a Dialog's Caption in MFC Pin
led mike23-May-08 8:16
led mike23-May-08 8:16 
GeneralRe: Changing a Dialog's Caption in MFC Pin
Larry Mills Sr25-May-08 16:55
Larry Mills Sr25-May-08 16:55 
AnswerRe: Changing a Dialog's Caption in MFC Pin
Nelek24-May-08 0:34
protectorNelek24-May-08 0:34 
Question[Message Deleted] Pin
Jung Seng Won23-May-08 4:59
Jung Seng Won23-May-08 4:59 
AnswerRe: Is there someone who know soma cube? Pin
Maximilien23-May-08 5:36
Maximilien23-May-08 5:36 
QuestionHow to Look for SMTP servers on network Pin
Vikash Singh23-May-08 4:46
Vikash Singh23-May-08 4:46 
AnswerRe: How to Look for SMTP servers on network Pin
led mike23-May-08 5:36
led mike23-May-08 5:36 
GeneralRe: How to Look for SMTP servers on network Pin
Vikash Singh25-May-08 22:09
Vikash Singh25-May-08 22:09 
QuestionCArray::GetData() vector equivalent Pin
bob1697223-May-08 4:42
bob1697223-May-08 4:42 
AnswerRe: CArray::GetData() vector equivalent Pin
Maximilien23-May-08 4:57
Maximilien23-May-08 4:57 
GeneralRe: CArray::GetData() vector equivalent Pin
bob1697223-May-08 5:23
bob1697223-May-08 5:23 
AnswerRe: CArray::GetData() vector equivalent Pin
Nemanja Trifunovic23-May-08 4:57
Nemanja Trifunovic23-May-08 4:57 
GeneralRe: CArray::GetData() vector equivalent Pin
bob1697223-May-08 5:21
bob1697223-May-08 5:21 
QuestionVC++ Updates? Pin
Bob Macklin23-May-08 4:32
Bob Macklin23-May-08 4:32 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.