Click here to Skip to main content
15,883,705 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Dll with real modal dialog boxes Pin
romano_sk26-Jan-06 22:23
romano_sk26-Jan-06 22:23 
QuestionCompiler doesn't know class.... sometimes Pin
Lilith.C23-Jan-06 19:01
Lilith.C23-Jan-06 19:01 
AnswerRe: Compiler doesn't know class.... sometimes Pin
Michael Dunn23-Jan-06 20:22
sitebuilderMichael Dunn23-Jan-06 20:22 
GeneralRe: Compiler doesn't know class.... sometimes Pin
Lilith.C24-Jan-06 2:10
Lilith.C24-Jan-06 2:10 
QuestionRe: Compiler doesn't know class.... sometimes Pin
Lilith.C24-Jan-06 6:29
Lilith.C24-Jan-06 6:29 
AnswerRe: Compiler doesn't know class.... sometimes Pin
Michael Dunn24-Jan-06 7:17
sitebuilderMichael Dunn24-Jan-06 7:17 
QuestionMDI non-themed max/min boxes Pin
picazo23-Jan-06 18:49
picazo23-Jan-06 18:49 
AnswerRe: MDI non-themed max/min boxes Pin
Owner drawn23-Jan-06 18:54
Owner drawn23-Jan-06 18:54 
You can remove WS_MAXIMIZEBOX and WS_MINIMIZEBOX from the concerned window's style.

BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs)
{
	//Modify the Window class or styles here by modifying the CREATESTRUCT cs

	<code>cs.style&=~(WS_MAXIMIZEBOX|WS_MINIMIZEBOX);</code>
	if( !CMDIChildWnd::PreCreateWindow(cs) )
		return FALSE;

	return TRUE;
}


Jesus LovesRose | [Rose]
<marquee direction="up" height="40" scrolldelay="1" step="1" scrollamount="1" style="background:#aabbcc;border-bottom:thin solid 1px #6699cc">
--Owner DrawnRose | [Rose]
--Nothing special
--Defeat is temporary but surrender is permanent
--Never say quits
--Jesus is LordRose | [Rose]

GeneralRe: MDI non-themed max/min boxes Pin
picazo23-Jan-06 18:59
picazo23-Jan-06 18:59 
GeneralRe: MDI non-themed max/min boxes Pin
Owner drawn23-Jan-06 19:22
Owner drawn23-Jan-06 19:22 
GeneralRe: MDI non-themed max/min boxes Pin
picazo23-Jan-06 19:56
picazo23-Jan-06 19:56 
GeneralRe: MDI non-themed max/min boxes Pin
Owner drawn23-Jan-06 22:04
Owner drawn23-Jan-06 22:04 
QuestionEnable dialogue control Pin
Anu_Bala23-Jan-06 17:52
Anu_Bala23-Jan-06 17:52 
AnswerRe: Enable dialogue control Pin
Owner drawn23-Jan-06 18:00
Owner drawn23-Jan-06 18:00 
GeneralRe: Enable dialogue control Pin
namaskaaram24-Jan-06 1:22
namaskaaram24-Jan-06 1:22 
AnswerRe: Enable dialogue control Pin
namaskaaram23-Jan-06 18:33
namaskaaram23-Jan-06 18:33 
QuestionGetting resources from DLL with res: protocol? Pin
Lord Kixdemp23-Jan-06 17:28
Lord Kixdemp23-Jan-06 17:28 
AnswerRe: Getting resources from DLL with res: protocol? Pin
Stephen Hewitt23-Jan-06 17:40
Stephen Hewitt23-Jan-06 17:40 
AnswerRe: Getting resources from DLL with res: protocol? Pin
Prakash Nadar23-Jan-06 18:02
Prakash Nadar23-Jan-06 18:02 
GeneralRe: Getting resources from DLL with res: protocol? Pin
Lord Kixdemp24-Jan-06 13:00
Lord Kixdemp24-Jan-06 13:00 
GeneralRe: Getting resources from DLL with res: protocol? Pin
Stephen Hewitt26-Jan-06 19:28
Stephen Hewitt26-Jan-06 19:28 
QuestionPlease help me with the list control... Pin
Learner200623-Jan-06 17:28
Learner200623-Jan-06 17:28 
AnswerRe: Please help me with the list control... Pin
Owner drawn23-Jan-06 17:31
Owner drawn23-Jan-06 17:31 
GeneralRe: Please help me with the list control... Pin
normanS23-Jan-06 18:29
normanS23-Jan-06 18:29 
GeneralRe: Please help me with the list control... Pin
Owner drawn23-Jan-06 18:47
Owner drawn23-Jan-06 18:47 

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.