Click here to Skip to main content
16,004,977 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: move graphic line Pin
Cedric Moonen21-Apr-06 2:22
Cedric Moonen21-Apr-06 2:22 
GeneralRe: move graphic line Pin
yang__lee21-Apr-06 2:32
yang__lee21-Apr-06 2:32 
GeneralRe: move graphic line Pin
Cedric Moonen21-Apr-06 2:48
Cedric Moonen21-Apr-06 2:48 
GeneralRe: move graphic line Pin
yang__lee21-Apr-06 18:21
yang__lee21-Apr-06 18:21 
Questionproblem in printing due to MapMode Pin
yang__lee21-Apr-06 2:12
yang__lee21-Apr-06 2:12 
AnswerRe: problem in printing due to MapMode Pin
includeh1021-Apr-06 3:35
includeh1021-Apr-06 3:35 
AnswerRe: problem in printing due to MapMode Pin
basementman21-Apr-06 8:38
basementman21-Apr-06 8:38 
QuestionTransparant problem in List ctrl Pin
Sandeep A.C21-Apr-06 1:02
Sandeep A.C21-Apr-06 1:02 
I am having a listctrl (Report view ) here I added some images

m_pmyImageList->Create( 30, 15,TRUE,5,2);
CBitmap bm,bm1;
bm.LoadBitmap(IDB_BITMAP_VIEW);
int i1 = m_pmyImageList->Add( &bm,RGB(0,0,0));
bm.DeleteObject();
bm.LoadBitmap(IDB_BITMAP_TURBO);
int i2 = m_pmyImageList->Add(&bm,RGB(0,0,0));
bm.DeleteObject();

and color of selected item text is


if ( CDDS_ITEMPREPAINT == pLVCD->nmcd.dwDrawStage )
{
COLORREF crText,crBack;

if ( (pLVCD->nmcd.dwItemSpec ) ==iListPos-1 )
{
crText = RGB(255,255,255);// Selected Text color
crBack= RGB(0,0,127);/// Selection back color
}
and now the images are not getting selected. I want to make them transparent (matches with the color of selection)

How can I? Please help me .
Thanks in advance


Sandeep A.C


Sanc
AnswerRe: Transparant problem in List ctrl Pin
Naveen21-Apr-06 1:12
Naveen21-Apr-06 1:12 
AnswerRe: Transparant problem in List ctrl Pin
Sandeep A.C21-Apr-06 1:23
Sandeep A.C21-Apr-06 1:23 
GeneralRe: Transparant problem in List ctrl Pin
Naveen21-Apr-06 2:01
Naveen21-Apr-06 2:01 
QuestionSending Multiple Attachments using MAPI in Lotus Notes Pin
Sandhya91021-Apr-06 0:59
Sandhya91021-Apr-06 0:59 
QuestionRe: Sending Multiple Attachments using MAPI in Lotus Notes Pin
David Crow21-Apr-06 2:29
David Crow21-Apr-06 2:29 
AnswerRe: Sending Multiple Attachments using MAPI in Lotus Notes Pin
Sandhya91023-Apr-06 19:43
Sandhya91023-Apr-06 19:43 
GeneralRe: Sending Multiple Attachments using MAPI in Lotus Notes Pin
David Crow24-Apr-06 2:27
David Crow24-Apr-06 2:27 
QuestionRe: How to get information about logoff process in win2000 Pin
David Crow21-Apr-06 2:49
David Crow21-Apr-06 2:49 
GeneralRe: How to get information about logoff process in win2000 Pin
Hamid_RT23-Apr-06 18:54
Hamid_RT23-Apr-06 18:54 
GeneralRe: How to get information about logoff process in win2000 Pin
sherton26-Apr-06 18:58
sherton26-Apr-06 18:58 
GeneralRe: How to get information about logoff process in win2000 Pin
Hamid_RT27-Apr-06 2:21
Hamid_RT27-Apr-06 2:21 
Question[Message Deleted] Pin
sherton21-Apr-06 0:40
sherton21-Apr-06 0:40 
AnswerRe: _beginthread or _beginthreadex & CreateThread Pin
Naveen21-Apr-06 0:49
Naveen21-Apr-06 0:49 
AnswerRe: _beginthread or _beginthreadex & CreateThread Pin
vikramlinux21-Apr-06 0:51
vikramlinux21-Apr-06 0:51 
AnswerRe: _beginthread or _beginthreadex & CreateThread Pin
Stephen Hewitt21-Apr-06 0:51
Stephen Hewitt21-Apr-06 0:51 
QuestionVirtual Constructors Pin
Rinu_Raj21-Apr-06 0:20
Rinu_Raj21-Apr-06 0:20 
GeneralRe: Virtual Constructors Pin
vikramlinux21-Apr-06 0:27
vikramlinux21-Apr-06 0: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.