Click here to Skip to main content
15,886,833 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: converting hex to image Pin
annese21-Mar-09 3:42
annese21-Mar-09 3:42 
GeneralRe: converting hex to image Pin
annese21-Mar-09 6:28
annese21-Mar-09 6:28 
QuestionCPU Time Pin
Max++20-Mar-09 18:33
Max++20-Mar-09 18:33 
AnswerRe: CPU Time Pin
N a v a n e e t h20-Mar-09 19:09
N a v a n e e t h20-Mar-09 19:09 
AnswerRe: CPU Time Pin
Stuart Dootson21-Mar-09 0:41
professionalStuart Dootson21-Mar-09 0:41 
Questionhow to detect the installed language pack in an application through MFC . Pin
Purish Dwivedi20-Mar-09 18:12
Purish Dwivedi20-Mar-09 18:12 
AnswerRe: how to detect the installed language pack in an application through MFC . Pin
JBAK_CP21-Mar-09 5:17
JBAK_CP21-Mar-09 5:17 
QuestionWhen call CWnd::Creat, the parent windows parameter can't be NULL Pin
followait20-Mar-09 17:29
followait20-Mar-09 17:29 
So what is the first windows' parent windows.
BTW, I create the first window myself, not using the framework.

BOOL CWnd::Create(LPCTSTR lpszClassName,
	LPCTSTR lpszWindowName, DWORD dwStyle,
	const RECT& rect,
	CWnd* pParentWnd, UINT nID,
	CCreateContext* pContext)
{
	// can't use for desktop or pop-up windows (use CreateEx instead)
	ASSERT(pParentWnd != NULL);
	ASSERT((dwStyle & WS_POPUP) == 0);

	return CreateEx(0, lpszClassName, lpszWindowName,
		dwStyle | WS_CHILD,
		rect.left, rect.top,
		rect.right - rect.left, rect.bottom - rect.top,
		pParentWnd->GetSafeHwnd(), (HMENU)(UINT_PTR)nID, (LPVOID)pContext);
}

AnswerRe: When call CWnd::Creat, the parent windows parameter can't be NULL Pin
Yusuf20-Mar-09 18:14
Yusuf20-Mar-09 18:14 
GeneralRe: When call CWnd::Creat, the parent windows parameter can't be NULL Pin
followait20-Mar-09 18:36
followait20-Mar-09 18:36 
QuestionBinary Edit Source Pin
ShiXiangYang20-Mar-09 15:53
ShiXiangYang20-Mar-09 15:53 
AnswerRe: Binary Edit Source Pin
Yusuf20-Mar-09 16:17
Yusuf20-Mar-09 16:17 
AnswerRe: Binary Edit Source Pin
Michael Schubert21-Mar-09 0:49
Michael Schubert21-Mar-09 0:49 
JokeRe: Binary Edit Source Pin
norish21-Mar-09 1:49
norish21-Mar-09 1:49 
JokeRe: Binary Edit Source Pin
Rajesh R Subramanian21-Mar-09 4:52
professionalRajesh R Subramanian21-Mar-09 4:52 
GeneralRe: Binary Edit Source Pin
Michael Schubert21-Mar-09 8:30
Michael Schubert21-Mar-09 8:30 
QuestionReadString() crashes at the end of file? [modified] Pin
AlanLai20-Mar-09 14:37
AlanLai20-Mar-09 14:37 
AnswerRe: ReadString() crashes at the end of file? Pin
CPallini21-Mar-09 1:13
mveCPallini21-Mar-09 1:13 
GeneralRe: ReadString() crashes at the end of file? Pin
AlanLai23-Mar-09 10:24
AlanLai23-Mar-09 10:24 
GeneralRe: ReadString() crashes at the end of file? Pin
CPallini23-Mar-09 10:45
mveCPallini23-Mar-09 10:45 
GeneralRe: ReadString() crashes at the end of file? Pin
AlanLai23-Mar-09 11:45
AlanLai23-Mar-09 11:45 
GeneralRe: ReadString() crashes at the end of file? Pin
AlanLai31-Mar-09 9:00
AlanLai31-Mar-09 9:00 
QuestionRun-time error stops dialog when combo box added: [8002] Window Create, and Create Dialog failure Error code-20 Pin
Goo220-Mar-09 12:00
Goo220-Mar-09 12:00 
AnswerRe: Run-time error stops dialog when combo box added: [8002] Window Create, and Create Dialog failure Error code-20 Pin
norish20-Mar-09 19:48
norish20-Mar-09 19:48 
QuestionWant to stop full screen display when using Windows media player Pin
Keith Worden20-Mar-09 8:43
Keith Worden20-Mar-09 8:43 

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.