Click here to Skip to main content
15,886,362 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Add multiple CView/CFormView to a CView? Pin
Tengil994-Aug-06 4:50
Tengil994-Aug-06 4:50 
QuestionRe: Add multiple CView/CFormView to a CView? Pin
David Crow4-Aug-06 6:04
David Crow4-Aug-06 6:04 
AnswerRe: Add multiple CView/CFormView to a CView? [modified] Pin
Tengil994-Aug-06 6:10
Tengil994-Aug-06 6:10 
GeneralRe: Add multiple CView/CFormView to a CView? Pin
David Crow4-Aug-06 6:30
David Crow4-Aug-06 6:30 
GeneralRe: Add multiple CView/CFormView to a CView? Pin
Tengil994-Aug-06 6:35
Tengil994-Aug-06 6:35 
GeneralRe: Add multiple CView/CFormView to a CView? Pin
David Crow4-Aug-06 7:14
David Crow4-Aug-06 7:14 
QuestionCalling a dialog box from winmain() [modified] Pin
georgekjolly3-Aug-06 23:47
georgekjolly3-Aug-06 23:47 
AnswerRe: Calling a dialog box from winmain() Pin
MANISH RASTOGI4-Aug-06 0:39
MANISH RASTOGI4-Aug-06 0:39 
#include<windows.h>
#include "resource.h"

LRESULT CALLBACK DialogProc(HWND hWnd,UINT uMsg, WPARAM wParam, LPARAM lParam)
{
switch(uMsg)
{
case WM_CLOSE:
EndDialog(hWnd,0);
return(TRUE);
break;
}
return(FALSE);
}
int _stdcall WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nShowCmd)
{
DialogBox(hInstance,MAKEINTRESOURCE(IDD_DIALOG1),NULL,(DLGPROC)DialogProc);
return(0);
}

MANISH RASTOGI
AnswerRe: Calling a dialog box from winmain() Pin
georgekjolly4-Aug-06 2:06
georgekjolly4-Aug-06 2:06 
QuestionI have problem in using of DDK Pin
javad_20053-Aug-06 23:37
javad_20053-Aug-06 23:37 
QuestionANSI C Standard Library in VC8 [modified] Pin
Ed.Poore3-Aug-06 23:15
Ed.Poore3-Aug-06 23:15 
AnswerRe: ANSI C Standard Library in VC8 Pin
toxcct3-Aug-06 23:30
toxcct3-Aug-06 23:30 
GeneralRe: ANSI C Standard Library in VC8 Pin
Ed.Poore3-Aug-06 23:36
Ed.Poore3-Aug-06 23:36 
Questioncopying a .txt file to a .tif file Pin
Kiran Pinjala3-Aug-06 23:00
Kiran Pinjala3-Aug-06 23:00 
QuestionRe: copying a .txt file to a .tif file Pin
Hamid_RT3-Aug-06 23:32
Hamid_RT3-Aug-06 23:32 
AnswerRe: copying a .txt file to a .tif file Pin
Kiran Pinjala3-Aug-06 23:41
Kiran Pinjala3-Aug-06 23:41 
GeneralRe: copying a .txt file to a .tif file Pin
Hamid_RT4-Aug-06 1:00
Hamid_RT4-Aug-06 1:00 
GeneralRe: copying a .txt file to a .tif file Pin
Kiran Pinjala4-Aug-06 2:48
Kiran Pinjala4-Aug-06 2:48 
GeneralRe: copying a .txt file to a .tif file Pin
Hamid_RT4-Aug-06 4:10
Hamid_RT4-Aug-06 4:10 
AnswerRe: copying a .txt file to a .tif file Pin
Ed.Poore3-Aug-06 23:38
Ed.Poore3-Aug-06 23:38 
AnswerRe: copying a .txt file to a .tif file Pin
David Crow4-Aug-06 2:50
David Crow4-Aug-06 2:50 
AnswerRe: copying a .txt file to a .tif file Pin
Viorel.4-Aug-06 2:54
Viorel.4-Aug-06 2:54 
GeneralRe: copying a .txt file to a .tif file Pin
Kiran Pinjala4-Aug-06 3:12
Kiran Pinjala4-Aug-06 3:12 
GeneralRe: copying a .txt file to a .tif file Pin
Viorel.4-Aug-06 3:33
Viorel.4-Aug-06 3:33 
QuestionPlaying audio in 5.1 multi channel sound card. Pin
jyoti_manoj3-Aug-06 22:43
jyoti_manoj3-Aug-06 22:43 

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.