Click here to Skip to main content
15,925,255 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Plz Help me Pin
Don Box21-Jan-08 22:19
Don Box21-Jan-08 22:19 
GeneralRe: Plz Help me Pin
Cedric Moonen21-Jan-08 22:21
Cedric Moonen21-Jan-08 22:21 
GeneralRe: Plz Help me Pin
CPallini21-Jan-08 22:26
mveCPallini21-Jan-08 22:26 
GeneralNeed help on MFC CListCtrl -- Pin
sarat21-Jan-08 22:06
sarat21-Jan-08 22:06 
GeneralRe: Need help on MFC CListCtrl -- Pin
Don Box21-Jan-08 22:31
Don Box21-Jan-08 22:31 
GeneralRe: Need help on MFC CListCtrl -- Pin
sarat21-Jan-08 22:52
sarat21-Jan-08 22:52 
GeneralRe: Need help on MFC CListCtrl -- Pin
Don Box21-Jan-08 23:04
Don Box21-Jan-08 23:04 
GeneralRe: Need help on MFC CListCtrl -- Pin
sarat22-Jan-08 0:44
sarat22-Jan-08 0:44 
Heyy Don

here is an other way i have done .. thought its useful for all so posting here



Create image list with cheked and uncheked dadiobitmap button images and and set it to list view control

CBitmap tmpBmp;
CImageList m_imgList;

m_imgList.Create(16,16,ILC_COLOR | ILC_MASK, 0, 255);
tmpBmp.LoadBitmap(IDB_RADIOBTNS);
m_imgList.Add(&tmpBmp, RGB(255, 0, 255));


myListCtrl.Create( Styles ,CRect(0,0,0,0), this, IDC_SOMEID)

//myListCtrl.SetExtendedStyle( set tyles what ever u want );

myListCtrl.SetImageList(m_imgList, LVSIL_STATE);

--
feel free to revert me back for info if any body needs more
QuestionRe: Need help on MFC CListCtrl -- Pin
David Crow22-Jan-08 2:59
David Crow22-Jan-08 2:59 
GeneralRe: Need help on MFC CListCtrl -- Pin
sarat27-Jan-08 22:13
sarat27-Jan-08 22:13 
GeneralRe: Need help on MFC CListCtrl -- Pin
David Crow28-Jan-08 2:29
David Crow28-Jan-08 2:29 
GeneralPerformance counter index Pin
George_George21-Jan-08 21:51
George_George21-Jan-08 21:51 
GeneralRe: Performance counter index Pin
David Crow22-Jan-08 3:04
David Crow22-Jan-08 3:04 
GeneralRe: Performance counter index Pin
George_George22-Jan-08 14:24
George_George22-Jan-08 14:24 
QuestionRe: Performance counter index Pin
David Crow22-Jan-08 15:58
David Crow22-Jan-08 15:58 
GeneralRe: Performance counter index Pin
George_George22-Jan-08 16:03
George_George22-Jan-08 16:03 
GeneralRe: Performance counter index Pin
David Crow23-Jan-08 2:34
David Crow23-Jan-08 2:34 
GeneralRe: Performance counter index Pin
George_George23-Jan-08 2:42
George_George23-Jan-08 2:42 
QuestionRe: Performance counter index Pin
David Crow23-Jan-08 3:00
David Crow23-Jan-08 3:00 
GeneralRe: Performance counter index Pin
George_George23-Jan-08 3:18
George_George23-Jan-08 3:18 
GeneralRe: Performance counter index Pin
David Crow23-Jan-08 3:39
David Crow23-Jan-08 3:39 
GeneralRe: Performance counter index Pin
George_George23-Jan-08 3:57
George_George23-Jan-08 3:57 
QuestionHow to specify path in sources file - MFC build on WDK Pin
Member 386968221-Jan-08 19:56
Member 386968221-Jan-08 19:56 
QuestionHow can open makefile by Visual studio 2005 (VC8) Pin
hanlei000000000921-Jan-08 18:34
hanlei000000000921-Jan-08 18:34 
AnswerRe: How can open makefile by Visual studio 2005 (VC8) Pin
GeorgeVN21-Jan-08 19:38
GeorgeVN21-Jan-08 19: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.