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

C / C++ / MFC

 
AnswerRe: how to delete the trayicon started by another app. Pin
Rajesh R Subramanian21-Mar-06 19:23
professionalRajesh R Subramanian21-Mar-06 19:23 
QuestionProperly hiding StartButton in windows XP Pin
AndrewVos21-Mar-06 13:56
AndrewVos21-Mar-06 13:56 
AnswerRe: Properly hiding StartButton in windows XP Pin
Nibu babu thomas21-Mar-06 18:14
Nibu babu thomas21-Mar-06 18:14 
AnswerRe: Properly hiding StartButton in windows XP Pin
Hamid_RT21-Mar-06 18:26
Hamid_RT21-Mar-06 18:26 
AnswerRe: Properly hiding StartButton in windows XP Pin
AndrewVos21-Mar-06 21:48
AndrewVos21-Mar-06 21:48 
GeneralRe: Properly hiding StartButton in windows XP Pin
toxcct21-Mar-06 22:07
toxcct21-Mar-06 22:07 
QuestionSir, I Want to Disable Maximize , Minimize and Close buttons in my SDI App pls help me. Pin
CodeVarma21-Mar-06 12:08
CodeVarma21-Mar-06 12:08 
AnswerRe: Sir, I Want to Disable Maximize , Minimize and Close buttons in my SDI App pls help me. Pin
Nibu babu thomas21-Mar-06 17:19
Nibu babu thomas21-Mar-06 17:19 
Put this code inside OnCreate
CMenu *pSysMenu = GetSystemMenu(FALSE);//get system menu
pSysMenu->RemoveMenu(SC_CLOSE, MF_BYCOMMAND);//remove close and disable close button
pSysMenu->RemoveMenu(SC_MINIMIZE, MF_BYCOMMAND);//remove minimize from sysmenu
pSysMenu->RemoveMenu(SC_MAXIMIZE, MF_BYCOMMAND);//remove maximize from sysmenu
ModifyStyle(WS_MINIMIZEBOX|WS_MAXIMIZEBOX, 0);//remove maximize and minimize buttons
Nibu thomas
Software Developer

Questionprinting infix expression into binary tree & evaluate it Pin
jdog271321-Mar-06 12:06
jdog271321-Mar-06 12:06 
QuestionDebugging a created process in Visual C++ 6.0 Pin
pambrose21-Mar-06 12:03
pambrose21-Mar-06 12:03 
Questionhow can I code some words by c++?? Pin
m_pourangnia21-Mar-06 8:42
m_pourangnia21-Mar-06 8:42 
AnswerRe: how can I code some words by c++?? Pin
Maximilien21-Mar-06 8:51
Maximilien21-Mar-06 8:51 
AnswerRe: how can I code some words by c++?? Pin
markkuk21-Mar-06 11:25
markkuk21-Mar-06 11:25 
QuestionKeeping a System "alive" Pin
#realJSOP21-Mar-06 7:11
professional#realJSOP21-Mar-06 7:11 
AnswerRe: Keeping a System "alive" Pin
Chris Meech21-Mar-06 7:42
Chris Meech21-Mar-06 7:42 
GeneralRe: Keeping a System "alive" Pin
#realJSOP21-Mar-06 8:06
professional#realJSOP21-Mar-06 8:06 
GeneralRe: Keeping a System "alive" Pin
Chris Gao21-Mar-06 9:24
Chris Gao21-Mar-06 9:24 
GeneralRe: Keeping a System "alive" Pin
Rick York21-Mar-06 21:17
mveRick York21-Mar-06 21:17 
GeneralRe: Keeping a System "alive" Pin
Chris Meech21-Mar-06 9:30
Chris Meech21-Mar-06 9:30 
GeneralRe: Keeping a System "alive" Pin
#realJSOP21-Mar-06 23:28
professional#realJSOP21-Mar-06 23:28 
GeneralRe: Keeping a System "alive" Pin
Chris Meech22-Mar-06 7:37
Chris Meech22-Mar-06 7:37 
AnswerRe: Keeping a System "alive" Pin
Michael Dunn21-Mar-06 8:20
sitebuilderMichael Dunn21-Mar-06 8:20 
GeneralRe: Keeping a System "alive" Pin
Rudolf Jan9-Apr-06 7:59
Rudolf Jan9-Apr-06 7:59 
GeneralRe: Keeping a System "alive" Pin
Michael Dunn9-Apr-06 8:22
sitebuilderMichael Dunn9-Apr-06 8:22 
Questionsingle document application Pin
fuschia21-Mar-06 6:48
fuschia21-Mar-06 6:48 

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.