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

C / C++ / MFC

 
QuestionHow to read numbers (int and float) from a text file in C/C++? Pin
kanishka137-Nov-08 18:56
kanishka137-Nov-08 18:56 
AnswerRe: How to read numbers (int and float) from a text file in C/C++? Pin
Saurabh.Garg7-Nov-08 19:04
Saurabh.Garg7-Nov-08 19:04 
AnswerRe: How to read numbers (int and float) from a text file in C/C++? Pin
Hamid_RT7-Nov-08 20:19
Hamid_RT7-Nov-08 20:19 
Questionlistview Pin
trioum7-Nov-08 17:50
trioum7-Nov-08 17:50 
AnswerRe: listview Pin
David Crow7-Nov-08 18:04
David Crow7-Nov-08 18:04 
QuestionReg : Key Down message not receiving in dialog procedure Pin
MANISH RASTOGI7-Nov-08 17:49
MANISH RASTOGI7-Nov-08 17:49 
AnswerRe: Reg : Key Down message not receiving in dialog procedure Pin
Hamid_RT7-Nov-08 20:23
Hamid_RT7-Nov-08 20:23 
GeneralRe: Reg : Key Down message not receiving in dialog procedure Pin
MANISH RASTOGI7-Nov-08 20:32
MANISH RASTOGI7-Nov-08 20:32 
BOOL CALLBACK DialogProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
{
BOOL bResult = FALSE;

switch(uMsg)
{
case WM_INITDIALOG:
// implemention code;
bResult = TRUE;
break;
case WM_KEYDOWN:
// implemention code;
bResult = TRUE;
break;
}

return(bResult);
}


DialogBox(g_hInstance, MAKEINTRESOURCE(IDD_DIALOG1), NULL, DialogProc);
Question[please help]why i cannot render my pic?thks! Pin
kaviniswell7-Nov-08 15:51
kaviniswell7-Nov-08 15:51 
AnswerRe: [please help]why i cannot render my pic?thks! Pin
Hamid_RT7-Nov-08 20:47
Hamid_RT7-Nov-08 20:47 
GeneralRe: [please help]why i cannot render my pic?thks! Pin
kaviniswell7-Nov-08 20:53
kaviniswell7-Nov-08 20:53 
GeneralRe: [please help]why i cannot render my pic?thks! Pin
Hamid_RT8-Nov-08 4:40
Hamid_RT8-Nov-08 4:40 
QuestionIs there a way to call a method with a CStringT Variable ? Pin
SNArruda7-Nov-08 11:48
SNArruda7-Nov-08 11:48 
QuestionHow to draw a chinese text on a window Pin
Tianan7-Nov-08 10:50
Tianan7-Nov-08 10:50 
JokeRe: How to draw a chinese text on a window Pin
sashoalm7-Nov-08 23:52
sashoalm7-Nov-08 23:52 
GeneralRe: How to draw a chinese text on a window Pin
Hamid_RT8-Nov-08 3:31
Hamid_RT8-Nov-08 3:31 
GeneralRe: How to draw a chinese text on a window Pin
Tianan8-Nov-08 13:01
Tianan8-Nov-08 13:01 
GeneralRe: How to draw a chinese text on a window Pin
Hamid_RT8-Nov-08 20:52
Hamid_RT8-Nov-08 20:52 
AnswerRe: How to draw a chinese text on a window Pin
Iain Clarke, Warrior Programmer8-Nov-08 13:10
Iain Clarke, Warrior Programmer8-Nov-08 13:10 
GeneralRe: How to draw a chinese text on a window Pin
Tianan8-Nov-08 16:27
Tianan8-Nov-08 16:27 
QuestionChecking for a registered DLL Pin
kpiciulo7-Nov-08 9:57
kpiciulo7-Nov-08 9:57 
AnswerRe: Checking for a registered DLL Pin
CPallini7-Nov-08 10:42
mveCPallini7-Nov-08 10:42 
QuestionStrange Behaviour on LookupPrivilegeValue Pin
bsaksida7-Nov-08 8:42
bsaksida7-Nov-08 8:42 
QuestionVisual C++ 2003 MDI file associations fail out of the box [solved] Pin
bob169727-Nov-08 4:49
bob169727-Nov-08 4:49 
QuestionDisable a Button ina SDI application Pin
m_mun7-Nov-08 2:50
m_mun7-Nov-08 2:50 

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.