Click here to Skip to main content
16,004,991 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: printout excel Pin
pnpfriend20-Aug-04 11:21
pnpfriend20-Aug-04 11:21 
GeneralRe: printout excel Pin
Michael Dunn20-Aug-04 14:04
sitebuilderMichael Dunn20-Aug-04 14:04 
GeneralRe: printout excel Pin
pnpfriend23-Aug-04 4:06
pnpfriend23-Aug-04 4:06 
Questionhow to prevent shutting dowsn Pin
yingkou19-Aug-04 14:31
yingkou19-Aug-04 14:31 
AnswerRe: how to prevent shutting dowsn Pin
User 58385219-Aug-04 18:48
User 58385219-Aug-04 18:48 
GeneralRe: how to prevent shutting dowsn Pin
yingkou19-Aug-04 23:04
yingkou19-Aug-04 23:04 
QuestionVisual C++ RichEdit ctrl in DialogBox - what's happening? Pin
int01hh19-Aug-04 13:48
int01hh19-Aug-04 13:48 
AnswerRe: Visual C++ RichEdit ctrl in DialogBox - what's happening? Pin
Naveed Shoaib19-Aug-04 14:16
Naveed Shoaib19-Aug-04 14:16 
If you are using a rich edit control in a dialog box (regardless whether your application is SDI, MDI, or dialog-based), you must call AfxInitRichEdit once before the dialog box is displayed. A typical place to call this function is in your program’s InitInstance member function. You do not need to call it for each time you display the dialog box, only the first time.

e.g.
BOOL CMyApp::InitInstance()
{
AfxEnableControlContainer();

AfxInitRichEdit();
………………………….
}

Naveed Shoaib
GeneralRe: Visual C++ RichEdit ctrl in DialogBox - what's happening? Pin
int01hh19-Aug-04 23:05
int01hh19-Aug-04 23:05 
GeneralIDispatch method in C++6.0 Pin
Freeman Taylor19-Aug-04 11:48
Freeman Taylor19-Aug-04 11:48 
GeneralRe: IDispatch method in C++6.0 Pin
Christian Graus19-Aug-04 13:24
protectorChristian Graus19-Aug-04 13:24 
GeneralRe: IDispatch method in C++6.0 Pin
Freeman Taylor20-Aug-04 4:06
Freeman Taylor20-Aug-04 4:06 
GeneralDeriving CStatic Pin
act_x19-Aug-04 11:13
act_x19-Aug-04 11:13 
GeneralCLSID_VideoMixingRenderer9 Pin
smack_2k219-Aug-04 9:04
smack_2k219-Aug-04 9:04 
Generalcalloc failure Pin
ns19-Aug-04 8:31
ns19-Aug-04 8:31 
GeneralRe: calloc failure Pin
Doug Mitchell19-Aug-04 9:55
Doug Mitchell19-Aug-04 9:55 
GeneralRe: calloc failure Pin
Ryan Binns19-Aug-04 18:12
Ryan Binns19-Aug-04 18:12 
GeneralRe: calloc failure Pin
ns20-Aug-04 5:39
ns20-Aug-04 5:39 
GeneralWeb Cam Simulation Pin
Watchman_2b19-Aug-04 8:22
Watchman_2b19-Aug-04 8:22 
GeneralHELP: unmanaged WMI Decoupled Provider Pin
tmangan19-Aug-04 8:03
tmangan19-Aug-04 8:03 
QuestionWhat should I use instead of for(;;) Pin
Micie19-Aug-04 7:57
Micie19-Aug-04 7:57 
AnswerRe: What should I use instead of for(;;) Pin
gamitech19-Aug-04 10:46
gamitech19-Aug-04 10:46 
AnswerRe: What should I use instead of for(;;) Pin
Archer28219-Aug-04 12:03
Archer28219-Aug-04 12:03 
AnswerRe: What should I use instead of for(;;) Pin
Henry miller20-Aug-04 3:47
Henry miller20-Aug-04 3:47 
GeneralNeed help with encryption/decryption program Pin
Quaydogg19-Aug-04 7:37
Quaydogg19-Aug-04 7:37 

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.