Click here to Skip to main content
15,908,842 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: Dialog Box in different OS Pin
Nelek16-Jul-08 21:27
protectorNelek16-Jul-08 21:27 
QuestionWhat causes calculation difference in Debug/Release config mode. Pin
YangJoyLi16-Jul-08 18:50
YangJoyLi16-Jul-08 18:50 
AnswerRe: What causes calculation difference in Debug/Release config mode. Pin
Cedric Moonen16-Jul-08 20:25
Cedric Moonen16-Jul-08 20:25 
GeneralRe: What causes calculation difference in Debug/Release config mode. Pin
YangJoyLi17-Jul-08 4:15
YangJoyLi17-Jul-08 4:15 
QuestionThrough which Api , get the details of Events in vc++, And using which api I can regenerate. Pin
Renjith.k.p16-Jul-08 18:48
Renjith.k.p16-Jul-08 18:48 
QuestionFind a string in CEdit control Pin
Sunayna16-Jul-08 18:14
Sunayna16-Jul-08 18:14 
AnswerRe: Find a string in CEdit control Pin
Naveen16-Jul-08 18:29
Naveen16-Jul-08 18:29 
AnswerRe: Find a string in CEdit control Pin
kDevloper16-Jul-08 18:55
kDevloper16-Jul-08 18:55 
1st get the text through declaring a CString object type than type cast it to string type. Smile | :)
for example
CString strUpper;

CEdit* pEdit = (CEdit*)GetDlgItem(IDC_EDIT);
if (pEdit)
pEdit->GetWindowText(strUpper);
string strNew = (LPCSTR)strUpper;
AnswerRe: Find a string in CEdit control Pin
CPallini16-Jul-08 21:26
mveCPallini16-Jul-08 21:26 
GeneralRe: Find a string in CEdit control Pin
Sunayna20-Jul-08 20:55
Sunayna20-Jul-08 20:55 
GeneralRe: Find a string in CEdit control Pin
CPallini20-Jul-08 21:24
mveCPallini20-Jul-08 21:24 
AnswerRe: Find a string in CEdit control Pin
ThatsAlok17-Jul-08 22:11
ThatsAlok17-Jul-08 22:11 
GeneralRe: Find a string in CEdit control Pin
Sunayna20-Jul-08 17:44
Sunayna20-Jul-08 17:44 
QuestionWhere to specify .res as Input to Linker on Visual Studio Pin
ForNow16-Jul-08 16:03
ForNow16-Jul-08 16:03 
AnswerRe: Where to specify .res as Input to Linker on Visual Studio Pin
zhwei16-Jul-08 18:22
zhwei16-Jul-08 18:22 
GeneralRe: Where to specify .res as Input to Linker on Visual Studio Pin
ForNow16-Jul-08 21:22
ForNow16-Jul-08 21:22 
Questionnewbie - compile c code to work with c++ code Pin
timverb16-Jul-08 10:29
timverb16-Jul-08 10:29 
AnswerRe: newbie - compile c code to work with c++ code Pin
kcynic16-Jul-08 16:30
kcynic16-Jul-08 16:30 
GeneralRe: newbie - compile c code to work with c++ code Pin
timverb17-Jul-08 11:36
timverb17-Jul-08 11:36 
QuestionRe: newbie - compile c code to work with c++ code Pin
David Crow17-Jul-08 3:28
David Crow17-Jul-08 3:28 
AnswerRe: newbie - compile c code to work with c++ code Pin
timverb17-Jul-08 11:32
timverb17-Jul-08 11:32 
GeneralRe: newbie - compile c code to work with c++ code Pin
David Crow17-Jul-08 15:53
David Crow17-Jul-08 15:53 
GeneralRe: newbie - compile c code to work with c++ code Pin
timverb17-Jul-08 16:21
timverb17-Jul-08 16:21 
GeneralRe: newbie - compile c code to work with c++ code Pin
David Crow18-Jul-08 9:05
David Crow18-Jul-08 9:05 
GeneralRe: newbie - compile c code to work with c++ code Pin
timverb18-Jul-08 9:38
timverb18-Jul-08 9:38 

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.