Click here to Skip to main content
15,922,696 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Copy file issue Pin
CPallini24-Apr-08 22:57
mveCPallini24-Apr-08 22:57 
GeneralRe: Copy file issue Pin
Hamid_RT25-Apr-08 3:09
Hamid_RT25-Apr-08 3:09 
QuestionCreateProcessWithLogonW Pin
Ajay L D24-Apr-08 21:29
Ajay L D24-Apr-08 21:29 
GeneralRe: CreateProcessWithLogonW Pin
Rajkumar R24-Apr-08 22:17
Rajkumar R24-Apr-08 22:17 
GeneralRe: CreateProcessWithLogonW Pin
Ajay L D24-Apr-08 22:41
Ajay L D24-Apr-08 22:41 
GeneralRe: CreateProcessWithLogonW Pin
Rajkumar R24-Apr-08 22:57
Rajkumar R24-Apr-08 22:57 
RantRe: CreateProcessWithLogonW Pin
Rajkumar R24-Apr-08 22:45
Rajkumar R24-Apr-08 22:45 
GeneralRe: CreateProcessWithLogonW Pin
Ajay L D25-Apr-08 0:07
Ajay L D25-Apr-08 0:07 
GeneralRe: CreateProcessWithLogonW Pin
Ajay L D25-Apr-08 0:18
Ajay L D25-Apr-08 0:18 
GeneralRe: CreateProcessWithLogonW Pin
Rajkumar R25-Apr-08 0:30
Rajkumar R25-Apr-08 0:30 
GeneralRe: CreateProcessWithLogonW Pin
Ajay L D25-Apr-08 3:33
Ajay L D25-Apr-08 3:33 
QuestionDetours and SetWindowsHookEx question [modified] Pin
yonghengzhimi24-Apr-08 21:28
yonghengzhimi24-Apr-08 21:28 
GeneralRe: Detours and SetWindowsHookEx question Pin
Nitheesh George24-Apr-08 22:47
Nitheesh George24-Apr-08 22:47 
GeneralRe: Detours and SetWindowsHookEx question [modified] Pin
yonghengzhimi24-Apr-08 23:51
yonghengzhimi24-Apr-08 23:51 
GeneralRe: Detours and SetWindowsHookEx question Pin
Nitheesh George29-Apr-08 22:53
Nitheesh George29-Apr-08 22:53 
GeneralRe: Detours and SetWindowsHookEx question Pin
yonghengzhimi27-Apr-08 15:09
yonghengzhimi27-Apr-08 15:09 
GeneralURLDownloadToCacheFile question Pin
monsieur_jj24-Apr-08 21:14
monsieur_jj24-Apr-08 21:14 
GeneralRe: URLDownloadToCacheFile question Pin
David Crow25-Apr-08 3:34
David Crow25-Apr-08 3:34 
GeneralRe: URLDownloadToCacheFile question Pin
monsieur_jj30-Apr-08 15:34
monsieur_jj30-Apr-08 15:34 
GeneralUsing the Insert statement in mfc c++ to database Pin
neo on poltek24-Apr-08 20:24
neo on poltek24-Apr-08 20:24 
GeneralRe: Using the Insert statement in mfc c++ to database Pin
Rajkumar R24-Apr-08 21:05
Rajkumar R24-Apr-08 21:05 
GeneralRe: Using the Insert statement in mfc c++ to database Pin
ShilpiP24-Apr-08 21:07
ShilpiP24-Apr-08 21:07 
GeneralImages in every column of listcontrol Pin
Kiran Pinjala24-Apr-08 20:19
Kiran Pinjala24-Apr-08 20:19 
I used the following code to show an image in the row of a listcontrol.
LV_ITEM lvi;	
	CString item,symbol;
	symbol = card.Right(1);
	int len = card.GetLength();
	item = card.Left(len-1);

	lvi.mask = LVIF_IMAGE | LVIF_TEXT ;
	lvi.iItem = 0;
	lvi.iSubItem = isubItem;
	lvi.pszText = item.GetBuffer(item.GetLength());
	lvi.stateMask = LVIS_STATEIMAGEMASK|LVM_SETITEMSTATE;

	 if(symbol.CompareNoCase("C")==0)
		lvi.iImage = 0;
	else if (symbol.CompareNoCase("D")==0)
		lvi.iImage = 1;
	else if(symbol.CompareNoCase("H")==0)
		lvi.iImage = 2;
	else if (symbol.CompareNoCase("S")==0)
		lvi.iImage = 3;

	player1.SetItem(&lvi);

There are 13 columns in the row. and there is only one row.
I wanted the image to be shown in every column of that row. But the image is being shown only in the first column. How to make it.

Thank you

Saadhinchaali

GeneralRe: Images in every column of listcontrol Pin
Naveen24-Apr-08 21:08
Naveen24-Apr-08 21:08 
GeneralCFileDialog Pin
john563224-Apr-08 19:59
john563224-Apr-08 19:59 

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.