Click here to Skip to main content
15,896,557 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Add Message Handler in VC7.0 Pin
Jason Henderson30-Apr-04 9:37
Jason Henderson30-Apr-04 9:37 
GeneralRe: Add Message Handler in VC7.0 Pin
pie30-Apr-04 9:44
pie30-Apr-04 9:44 
GeneralRe: Add Message Handler in VC7.0 Pin
l a u r e n30-Apr-04 19:45
l a u r e n30-Apr-04 19:45 
GeneralDeleting Start-Menu Folder Pin
Brad Bruce30-Apr-04 8:06
Brad Bruce30-Apr-04 8:06 
GeneralRe: Deleting Start-Menu Folder Pin
David Crow30-Apr-04 8:15
David Crow30-Apr-04 8:15 
GeneralRe: Deleting Start-Menu Folder Pin
Brad Bruce30-Apr-04 13:02
Brad Bruce30-Apr-04 13:02 
Generallocalization with satellite dll's Pin
Konrad Windszus30-Apr-04 7:55
Konrad Windszus30-Apr-04 7:55 
GeneralList Control Pin
aman200630-Apr-04 7:34
aman200630-Apr-04 7:34 
Hi In one column of List Control i want to show the image but not the values, but with my code(pasted below) it is showing both the image and values. Can any body help me how can i achieve this.But i need to associate the values also because i am doing sorting also on that column

//Set up Record Status
Holder = pRecordSet->GetCollect("RecordStatus");
status = Holder.iVal;
temp.Format("%d",status);
m_RecordList->SetItemText(iNew,5,temp);

// setup record status
lvI.mask=LVIF_IMAGE ;
lvI.iItem= iNew;
lvI.iSubItem=5;


if(status == eCIT_STATUS_COMPLETE)
lvI.iImage = 1;
else if(status == eCIT_STATUS_VOID)
lvI.iImage = 3;
else
lvI.iImage = 0;

m_RecordList->SetItem(&lvI);


Thanks
Shailesh
GeneralRe: List Control Pin
David Crow30-Apr-04 7:59
David Crow30-Apr-04 7:59 
GeneralRe: List Control Pin
aman200630-Apr-04 8:06
aman200630-Apr-04 8:06 
GeneralRe: List Control Pin
David Crow30-Apr-04 8:12
David Crow30-Apr-04 8:12 
GeneralRe: List Control Pin
aman200630-Apr-04 8:33
aman200630-Apr-04 8:33 
GeneralRe: List Control Pin
David Crow30-Apr-04 8:41
David Crow30-Apr-04 8:41 
GeneralRe: List Control Pin
aman200630-Apr-04 8:45
aman200630-Apr-04 8:45 
GeneralRe: List Control Pin
David Crow30-Apr-04 9:50
David Crow30-Apr-04 9:50 
GeneralRe: List Control Pin
aman200630-Apr-04 10:42
aman200630-Apr-04 10:42 
GeneralRe: List Control Pin
David Crow30-Apr-04 10:53
David Crow30-Apr-04 10:53 
GeneralConsole Application Pin
maxpayne30-Apr-04 6:44
maxpayne30-Apr-04 6:44 
GeneralRe: Console Application Pin
Navin30-Apr-04 7:29
Navin30-Apr-04 7:29 
QuestionHow can i pass MFC pointers to non MFC DLL's? Pin
Jobby Joseph30-Apr-04 6:38
Jobby Joseph30-Apr-04 6:38 
AnswerRe: How can i pass MFC pointers to non MFC DLL's? Pin
David Crow30-Apr-04 6:41
David Crow30-Apr-04 6:41 
Questionprogramatically click a button on a HTML? Pin
Ehsan Baghaki30-Apr-04 5:34
Ehsan Baghaki30-Apr-04 5:34 
AnswerRe: programatically click a button on a HTML? Pin
David Crow30-Apr-04 6:49
David Crow30-Apr-04 6:49 
GeneralRe: programatically click a button on a HTML? Pin
Ehsan Baghaki30-Apr-04 7:01
Ehsan Baghaki30-Apr-04 7:01 
AnswerRe: programatically click a button on a HTML? Pin
Jason Henderson30-Apr-04 9:27
Jason Henderson30-Apr-04 9:27 

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.