Click here to Skip to main content
16,005,734 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Exception handling Pin
Andrew Peace7-Aug-01 11:54
Andrew Peace7-Aug-01 11:54 
GeneralRe: Exception handling Pin
Frank Deo7-Aug-01 12:01
Frank Deo7-Aug-01 12:01 
GeneralUsing ATL objects in the project its created Pin
Cem Kalyoncu7-Aug-01 11:36
Cem Kalyoncu7-Aug-01 11:36 
GeneralCView and CFormView Pin
Matt Newman7-Aug-01 11:17
Matt Newman7-Aug-01 11:17 
GeneralRe: CView and CFormView Pin
Christian Graus8-Aug-01 12:41
protectorChristian Graus8-Aug-01 12:41 
GeneralRe: CView and CFormView Pin
Matt Newman8-Aug-01 17:43
Matt Newman8-Aug-01 17:43 
GeneralRemoving close button from wizard Pin
7-Aug-01 10:51
suss7-Aug-01 10:51 
GeneralRe: Removing close button from wizard Pin
Frank Deo7-Aug-01 11:22
Frank Deo7-Aug-01 11:22 
Handle OnInitDialog in your CPropertySheetEx class.

This is how I've removed the maximize button (Or disabled it)...I believe you can do the same thing with the close button.

CMenu *pSysMenu = GetSystemMenu(FALSE);
ASSERT(pSysMenu != NULL);
VERIFY(pSysMenu->RemoveMenu(SC_MAXIMIZE, MF_BYCOMMAND));


Cheers,
Frank

Gumbercules? I love that guy!
Dr. Zoidberg
GeneralAvoiding multiple instances of an application. Pin
John Uhlenbrock7-Aug-01 9:53
John Uhlenbrock7-Aug-01 9:53 
GeneralRe: Avoiding multiple instances of an application. Pin
7-Aug-01 10:45
suss7-Aug-01 10:45 
GeneralRe: Avoiding multiple instances of an application. Pin
PJ Arends7-Aug-01 12:07
professionalPJ Arends7-Aug-01 12:07 
GeneralRe: Avoiding multiple instances of an application. Pin
Kannan Kalyanaraman7-Aug-01 19:05
Kannan Kalyanaraman7-Aug-01 19:05 
GeneralAVI MakeFileFromStreams Pin
Jake Palmer7-Aug-01 9:47
Jake Palmer7-Aug-01 9:47 
GeneralHelp with multi-threaded app Pin
Dean Goodman7-Aug-01 8:44
Dean Goodman7-Aug-01 8:44 
GeneralRe: Help with multi-threaded app Pin
Tomasz Sowinski7-Aug-01 8:57
Tomasz Sowinski7-Aug-01 8:57 
GeneralRe: Help with multi-threaded app Pin
Dean Goodman8-Aug-01 6:27
Dean Goodman8-Aug-01 6:27 
GeneralRe: Help with multi-threaded app Pin
Tomasz Sowinski9-Aug-01 3:30
Tomasz Sowinski9-Aug-01 3:30 
GeneralRe: Help with multi-threaded app Pin
Dean Goodman10-Aug-01 5:25
Dean Goodman10-Aug-01 5:25 
GeneralCSplitterWnd Pin
7-Aug-01 8:04
suss7-Aug-01 8:04 
GeneralRe: CSplitterWnd Pin
Tomasz Sowinski7-Aug-01 8:29
Tomasz Sowinski7-Aug-01 8:29 
GeneralRe: CSplitterWnd Pin
Tomasz Sowinski9-Aug-01 3:44
Tomasz Sowinski9-Aug-01 3:44 
GeneralList Box Pin
John Uhlenbrock7-Aug-01 7:26
John Uhlenbrock7-Aug-01 7:26 
GeneralRe: List Box Pin
Carlos Antollini7-Aug-01 8:19
Carlos Antollini7-Aug-01 8:19 
QuestionWhy does this crash? Pin
7-Aug-01 7:00
suss7-Aug-01 7:00 
AnswerRe: Why does this crash? Pin
7-Aug-01 7:57
suss7-Aug-01 7:57 

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.