Click here to Skip to main content
15,891,136 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: CMFCListCtrl sort help Pin
Iain Clarke, Warrior Programmer7-Jul-08 3:52
Iain Clarke, Warrior Programmer7-Jul-08 3:52 
GeneralRe: CMFCListCtrl sort help Pin
dfza30-Oct-08 21:29
dfza30-Oct-08 21:29 
GeneralRe: CMFCListCtrl sort help Pin
Iain Clarke, Warrior Programmer30-Oct-08 23:18
Iain Clarke, Warrior Programmer30-Oct-08 23:18 
QuestionDoes GDI+ support resizing a gif file? Pin
followait6-Jul-08 22:55
followait6-Jul-08 22:55 
AnswerRe: Does GDI+ support resizing a gif file? Pin
James R. Twine7-Jul-08 1:18
James R. Twine7-Jul-08 1:18 
GeneralRe: Does GDI+ support resizing a gif file? Pin
followait7-Jul-08 4:20
followait7-Jul-08 4:20 
GeneralRe: Does GDI+ support resizing a gif file? Pin
James R. Twine7-Jul-08 11:03
James R. Twine7-Jul-08 11:03 
QuestionWhy can't the CWnd be shown? Pin
followait6-Jul-08 21:55
followait6-Jul-08 21:55 
CPropWnd is derived from CDockablePane, and CNavWnd is derived from CWnd.


Here is the handler for the "show navigator button":

void CPropWnd::OnShowNavigatorWnd()
{
	CNavWnd *pNav = new CNavWnd(this);

	CRect rc;
	rc.SetEmptyRect();
	if (!pNav->Create(NULL, NULL, WS_VISIBLE | WS_OVERLAPPEDWINDOW, rc, this, UINT(-1)))
	{
		ASSERT(FALSE); //it's ok, never got here
	}
	GetWindowRect(&rc);
	pNav->SetWindowPos(NULL, rc.right + 5, rc.top, -1, -1,
		SWP_NOSIZE | SWP_NOZORDER | SWP_SHOWWINDOW); // the size of nav wnd will be assigned in CNavWnd::OnCreate() by itself
	pNav->UpdateWindow();
}


Why the navigaotr windows can't be shown?

system

AnswerRe: Why can't the CWnd be shown? Pin
baerten6-Jul-08 22:33
baerten6-Jul-08 22:33 
GeneralRe: Why can't the CWnd be shown? Pin
followait7-Jul-08 0:42
followait7-Jul-08 0:42 
AnswerRe: Why can't the CWnd be shown? Pin
KarstenK6-Jul-08 22:47
mveKarstenK6-Jul-08 22:47 
QuestionCMonthCalCtrl Pin
Paulraj G6-Jul-08 20:58
Paulraj G6-Jul-08 20:58 
AnswerRe: CMonthCalCtrl Pin
Cedric Moonen6-Jul-08 21:32
Cedric Moonen6-Jul-08 21:32 
AnswerRe: CMonthCalCtrl Pin
CPallini6-Jul-08 21:37
mveCPallini6-Jul-08 21:37 
GeneralRe: CMonthCalCtrl [modified] Pin
Paulraj G6-Jul-08 21:47
Paulraj G6-Jul-08 21:47 
GeneralYou're welcome. Pin
CPallini6-Jul-08 21:53
mveCPallini6-Jul-08 21:53 
GeneralRe: CMonthCalCtrl Pin
CPallini6-Jul-08 22:20
mveCPallini6-Jul-08 22:20 
GeneralRe: CMonthCalCtrl Pin
Paulraj G6-Jul-08 23:06
Paulraj G6-Jul-08 23:06 
QuestionCan't figure out this error... Pin
AndreFratelli6-Jul-08 20:18
AndreFratelli6-Jul-08 20:18 
AnswerRe: Can't figure out this error... Pin
Naveen6-Jul-08 20:36
Naveen6-Jul-08 20:36 
GeneralRe: Can't figure out this error... Pin
AndreFratelli6-Jul-08 20:49
AndreFratelli6-Jul-08 20:49 
GeneralRe: Can't figure out this error... Pin
BadKarma6-Jul-08 20:57
BadKarma6-Jul-08 20:57 
GeneralRe: Can't figure out this error... Pin
AndreFratelli6-Jul-08 21:11
AndreFratelli6-Jul-08 21:11 
GeneralRe: Can't figure out this error... Pin
BadKarma6-Jul-08 21:41
BadKarma6-Jul-08 21:41 
GeneralRe: Can't figure out this error... Pin
AndreFratelli6-Jul-08 22:28
AndreFratelli6-Jul-08 22:28 

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.