Click here to Skip to main content
15,907,328 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: query based on date (CRecordset) Pin
Mark Salsbery15-Jun-07 9:22
Mark Salsbery15-Jun-07 9:22 
QuestionScrolling List Pin
thenewbee15-Jun-07 4:47
thenewbee15-Jun-07 4:47 
AnswerRe: Scrolling List Pin
CPallini15-Jun-07 5:55
mveCPallini15-Jun-07 5:55 
GeneralRe: Scrolling List Pin
thenewbee17-Jun-07 20:37
thenewbee17-Jun-07 20:37 
QuestionTree Control Images Pin
Rajkumar Rachoti15-Jun-07 3:39
Rajkumar Rachoti15-Jun-07 3:39 
AnswerRe: Tree Control Images Pin
Mark Salsbery15-Jun-07 6:10
Mark Salsbery15-Jun-07 6:10 
GeneralRe: Tree Control Images Pin
Rajkumar Rachoti17-Jun-07 20:32
Rajkumar Rachoti17-Jun-07 20:32 
GeneralRe: Tree Control Images Pin
Mark Salsbery18-Jun-07 4:37
Mark Salsbery18-Jun-07 4:37 
I don't know why the images would be "blurred" unless the buttons aren't enabled.

Are the buttons enabled? Is bright white the "transparent" color for the bitmaps?

You could try this (although your code always works for me Smile | :) )...
Note I'm assuming 16x16 bitmaps in the imagelist -
CBitmap bitmap;
bitmap.LoadBitmap(IDB_TREE_IMAGES);
m_ToolBarImageList.Create(16, 16, ILC_COLOR8|ILC_MASK, numberofimages, numberofimagestogrowby);
m_ToolBarImageList.Add(&bitmap, RGB(0xFF,0xFF,0xFF));


Mark


"Posting a VB.NET question in the C++ forum will end in tears." Chris Maunder

GeneralRe: Tree Control Images Pin
Rajkumar Rachoti19-Jun-07 4:46
Rajkumar Rachoti19-Jun-07 4:46 
GeneralRe: Tree Control Images Pin
Rajkumar Rachoti19-Jun-07 4:46
Rajkumar Rachoti19-Jun-07 4:46 
GeneralRe: Tree Control Images Pin
Mark Salsbery19-Jun-07 5:09
Mark Salsbery19-Jun-07 5:09 
Question.Net or MFC which one is faster? Pin
Electronic7515-Jun-07 3:28
Electronic7515-Jun-07 3:28 
AnswerRe: .Net or MFC which one is faster? Pin
Force Code15-Jun-07 3:37
Force Code15-Jun-07 3:37 
AnswerRe: .Net or MFC which one is faster? Pin
CPallini15-Jun-07 3:47
mveCPallini15-Jun-07 3:47 
AnswerRe: .Net or MFC which one is faster? Pin
Matthew Faithfull15-Jun-07 4:13
Matthew Faithfull15-Jun-07 4:13 
GeneralRe: .Net or MFC which one is faster? Pin
Nemanja Trifunovic15-Jun-07 4:16
Nemanja Trifunovic15-Jun-07 4:16 
GeneralRe: .Net or MFC which one is faster? Pin
Matthew Faithfull15-Jun-07 4:51
Matthew Faithfull15-Jun-07 4:51 
AnswerRe: .Net or MFC which one is faster? Pin
Nemanja Trifunovic15-Jun-07 4:21
Nemanja Trifunovic15-Jun-07 4:21 
GeneralRe: .Net or MFC which one is faster? Pin
CPallini15-Jun-07 5:45
mveCPallini15-Jun-07 5:45 
GeneralRe: .Net or MFC which one is faster? Pin
Nemanja Trifunovic15-Jun-07 6:10
Nemanja Trifunovic15-Jun-07 6:10 
GeneralRe: .Net or MFC which one is faster? Pin
CPallini15-Jun-07 6:42
mveCPallini15-Jun-07 6:42 
AnswerRe: .Net or MFC which one is faster? Pin
Mark Salsbery15-Jun-07 6:23
Mark Salsbery15-Jun-07 6:23 
QuestionBitmap on Controls Pin
mcsherry15-Jun-07 3:21
mcsherry15-Jun-07 3:21 
AnswerRe: Bitmap on Controls Pin
Force Code15-Jun-07 3:30
Force Code15-Jun-07 3:30 
GeneralRe: Bitmap on Controls Pin
mcsherry15-Jun-07 4:21
mcsherry15-Jun-07 4:21 

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.