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

C / C++ / MFC

 
GeneralRe: List view colors Pin
User 665827-Sep-02 7:00
User 665827-Sep-02 7:00 
GeneralRe: List view colors Pin
Shay Harel27-Sep-02 7:09
Shay Harel27-Sep-02 7:09 
GeneralQuestion about function parameters Pin
User 665827-Sep-02 6:39
User 665827-Sep-02 6:39 
GeneralRe: Question about function parameters Pin
jmkhael27-Sep-02 6:43
jmkhael27-Sep-02 6:43 
GeneralRe: Question about function parameters Pin
User 665827-Sep-02 6:58
User 665827-Sep-02 6:58 
GeneralRe: Question about function parameters Pin
jmkhael27-Sep-02 7:11
jmkhael27-Sep-02 7:11 
GeneralRe: Question about function parameters Pin
User 665827-Sep-02 7:18
User 665827-Sep-02 7:18 
GeneralCTreeControl images Pin
Anonymous27-Sep-02 6:35
Anonymous27-Sep-02 6:35 
I wrote the following code to display text and images in a CTreeCtrl item,
but only the text is shown in the item.


CTreeCtrl* pCtrl = (CTreeCtrl*) GetDlgItem(IDC_TREE);
...
CImageList MyImageList;
MyImageList.Create(16, 16, ILC_COLOR8, 0, 4);
...
// IDR_ICON1 is a 16*16 icon
MyImageList.Add(AfxGetApp()->LoadIcon(IDR_ICON1));

pCtrl->SetImageList(&MyImageList, TVSIL_NORMAL);
...
TVINSERTSTRUCT tvInsert;
tvInsert.hParent = NULL;
tvInsert.hInsertAfter = NULL;
tvInsert.item.mask = TVIF_TEXT | TVIF_IMAGE ;
tvInsert.item.iImage = 0; // zero index based, and I have only one picture
tvInsert.item.pszText = T("ItemText");
...
HTREEITEM hItem = pCtrl->InsertItem(&tvInsert);

Can you help me?

Tank you.



GeneralRe: CTreeControl images Pin
Shay Harel27-Sep-02 6:43
Shay Harel27-Sep-02 6:43 
GeneralRe: CTreeControl images Pin
Anonymous27-Sep-02 6:46
Anonymous27-Sep-02 6:46 
GeneralRe: CTreeControl images Pin
Shay Harel27-Sep-02 6:51
Shay Harel27-Sep-02 6:51 
GeneralDisable accelerator keys temporarily Pin
bluntagain27-Sep-02 6:24
bluntagain27-Sep-02 6:24 
GeneralDisable accelerator keys temporarily Pin
bluntagain27-Sep-02 6:24
bluntagain27-Sep-02 6:24 
Generalintercepting serial port Pin
flux27-Sep-02 5:52
flux27-Sep-02 5:52 
GeneralRe: intercepting serial port Pin
Andreas Saurwein27-Sep-02 6:06
Andreas Saurwein27-Sep-02 6:06 
GeneralRe: intercepting serial port Pin
jmkhael27-Sep-02 6:08
jmkhael27-Sep-02 6:08 
GeneralRe: intercepting serial port Pin
Jon Hulatt27-Sep-02 6:28
Jon Hulatt27-Sep-02 6:28 
GeneralRe: intercepting serial port Pin
Andreas Saurwein27-Sep-02 6:35
Andreas Saurwein27-Sep-02 6:35 
Generalhourglass cursor question Pin
ns27-Sep-02 5:51
ns27-Sep-02 5:51 
GeneralRe: hourglass cursor question Pin
Andreas Saurwein27-Sep-02 6:06
Andreas Saurwein27-Sep-02 6:06 
GeneralRe: hourglass cursor question Pin
ns27-Sep-02 6:30
ns27-Sep-02 6:30 
GeneralRe: hourglass cursor question Pin
Andreas Saurwein27-Sep-02 6:38
Andreas Saurwein27-Sep-02 6:38 
GeneralRe: hourglass cursor question Pin
ns27-Sep-02 6:38
ns27-Sep-02 6:38 
GeneralRe: hourglass cursor question Pin
Ravi Bhavnani27-Sep-02 12:46
professionalRavi Bhavnani27-Sep-02 12:46 
GeneralRe: hourglass cursor question Pin
Andreas Saurwein28-Sep-02 12:54
Andreas Saurwein28-Sep-02 12:54 

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.