Click here to Skip to main content
15,881,803 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: why no virtual constructor? Pin
Eugen Podsypalnikov16-Jul-12 23:59
Eugen Podsypalnikov16-Jul-12 23:59 
QuestionHow to add app icon in full color? Pin
includeh1014-Jul-12 15:22
includeh1014-Jul-12 15:22 
AnswerRe: How to add app icon in full color? Pin
«_Superman_»14-Jul-12 17:58
professional«_Superman_»14-Jul-12 17:58 
QuestionMFC CListCtrl FindItem is not working Pin
D.Manivelan13-Jul-12 23:45
D.Manivelan13-Jul-12 23:45 
AnswerRe: MFC CListCtrl FindItem is not working Pin
_Flaviu14-Jul-12 0:06
_Flaviu14-Jul-12 0:06 
GeneralRe: MFC CListCtrl FindItem is not working Pin
D.Manivelan14-Jul-12 1:14
D.Manivelan14-Jul-12 1:14 
GeneralRe: MFC CListCtrl FindItem is not working Pin
_Flaviu14-Jul-12 1:20
_Flaviu14-Jul-12 1:20 
GeneralRe: MFC CListCtrl FindItem is not working Pin
Rolf Kristensen14-Jul-12 21:41
Rolf Kristensen14-Jul-12 21:41 
You could insert the column you want to search in first, and then change the display order afterwards so it becomes the second column. Or just implement your own search method:
C++
CString token = "hello";
for(int i=0;i<GetItemCount();i++)

 CString subitemvalue=GetItemText( i , 2);
 if (subitemvalue == token)
     return i;
}

AnswerRe: MFC CListCtrl FindItem is not working Pin
Richard MacCutchan14-Jul-12 0:17
mveRichard MacCutchan14-Jul-12 0:17 
Question'fopen_s' and 'fscanf_s' Pin
mrby12313-Jul-12 10:38
mrby12313-Jul-12 10:38 
AnswerRe: 'fopen_s' and 'fscanf_s' Pin
Wes Aday13-Jul-12 10:45
professionalWes Aday13-Jul-12 10:45 
AnswerRe: 'fopen_s' and 'fscanf_s' Pin
jeron113-Jul-12 10:45
jeron113-Jul-12 10:45 
Questionsrand(time(NULL)); in MSDN 2010 Pin
mrby12313-Jul-12 7:04
mrby12313-Jul-12 7:04 
AnswerRe: srand(time(NULL)); in MSDN 2010 Pin
David Crow13-Jul-12 7:52
David Crow13-Jul-12 7:52 
AnswerRe: srand(time(NULL)); in MSDN 2010 Pin
Albert Holguin13-Jul-12 8:37
professionalAlbert Holguin13-Jul-12 8:37 
QuestionHow to undo drawing images in MFC.? Pin
mbatra3111-Jul-12 22:51
mbatra3111-Jul-12 22:51 
GeneralRe: How to undo drawing images in MFC.? Pin
Richard MacCutchan11-Jul-12 23:23
mveRichard MacCutchan11-Jul-12 23:23 
AnswerRe: How to undo drawing images in MFC.? Pin
Maximilien12-Jul-12 1:15
Maximilien12-Jul-12 1:15 
GeneralRe: How to undo drawing images in MFC.? Pin
mbatra3112-Jul-12 3:09
mbatra3112-Jul-12 3:09 
AnswerRe: How to undo drawing images in MFC.? Pin
Sunil P V14-Jul-12 22:09
Sunil P V14-Jul-12 22:09 
QuestionQuerying on existing recordsets Pin
SelvaKr11-Jul-12 21:20
SelvaKr11-Jul-12 21:20 
AnswerRe: Querying on existing recordsets Pin
Jochen Arndt11-Jul-12 21:45
professionalJochen Arndt11-Jul-12 21:45 
GeneralRe: Querying on existing recordsets Pin
SelvaKr11-Jul-12 23:04
SelvaKr11-Jul-12 23:04 
GeneralRe: Querying on existing recordsets Pin
Jochen Arndt11-Jul-12 23:24
professionalJochen Arndt11-Jul-12 23:24 
Questionvisual c++ mfc--adding control inside list control Pin
yasardiwan11-Jul-12 19:14
yasardiwan11-Jul-12 19:14 

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.