Click here to Skip to main content
15,886,578 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
AnswerRe: concatenate strings with long Pin
Hamid_RT27-Jul-06 2:23
Hamid_RT27-Jul-06 2:23 
AnswerRe: concatenate strings with long Pin
Parthi_Appu27-Jul-06 2:53
Parthi_Appu27-Jul-06 2:53 
QuestionScroolView Pin
tanarnelinistit27-Jul-06 1:56
tanarnelinistit27-Jul-06 1:56 
AnswerRe: ScroolView Pin
Cedric Moonen27-Jul-06 2:10
Cedric Moonen27-Jul-06 2:10 
AnswerRe: ScroolView Pin
Gary R. Wheeler29-Jul-06 4:20
Gary R. Wheeler29-Jul-06 4:20 
QuestionCImageList used for CMenu check-mark image Pin
jag1027-Jul-06 1:52
jag1027-Jul-06 1:52 
AnswerRe: CImageList used for CMenu check-mark image Pin
Hamid_RT27-Jul-06 2:00
Hamid_RT27-Jul-06 2:00 
AnswerRe: CImageList used for CMenu check-mark image [modified] Pin
Parthi_Appu27-Jul-06 3:08
Parthi_Appu27-Jul-06 3:08 
Use GetIconInfo(..) API to have HBITMAP from HICON...

ICONINFO IconInfo;
GetIconInfo(hIcon, &IconInfo);

then use IconInfo.hbmColor for HBITMAP...
i.e., HBITMAP hBitmap = IconInfo.hbmColor;

Make sure to delete those bitmap handles as..
DeleteObject(IconInfo.hbmColor);
DeleteObject(IconInfo.hbmMask);
-- modified at 0:37 Friday 28th July, 2006

Do your Duty and Don't expect the Result

Questionvisual studion pro directx keyboard direct input probs Pin
wickedsue27-Jul-06 1:46
wickedsue27-Jul-06 1:46 
AnswerRe: visual studion pro directx keyboard direct input probs Pin
Gary R. Wheeler29-Jul-06 4:25
Gary R. Wheeler29-Jul-06 4:25 
Questionhow to call dll's in your code in VC++ Pin
namy3127-Jul-06 1:41
namy3127-Jul-06 1:41 
AnswerRe: how to call dll's in your code in VC++ Pin
Cedric Moonen27-Jul-06 1:52
Cedric Moonen27-Jul-06 1:52 
AnswerRe: how to call dll's in your code in VC++ Pin
Hamid_RT27-Jul-06 2:04
Hamid_RT27-Jul-06 2:04 
Questionhow to call dll's in your code in VC++ Pin
namy3127-Jul-06 1:40
namy3127-Jul-06 1:40 
QuestionProblem with the Registry Wrapper Class (CRegistry) Pin
Semion_N27-Jul-06 0:58
Semion_N27-Jul-06 0:58 
AnswerRe: Problem with the Registry Wrapper Class (CRegistry) Pin
_AnsHUMAN_ 27-Jul-06 1:09
_AnsHUMAN_ 27-Jul-06 1:09 
AnswerRe: Problem with the Registry Wrapper Class (CRegistry) Pin
Hamid_RT27-Jul-06 1:53
Hamid_RT27-Jul-06 1:53 
GeneralRe: Problem with the Registry Wrapper Class (CRegistry) Pin
Semion_N27-Jul-06 3:24
Semion_N27-Jul-06 3:24 
AnswerRe: Problem with the Registry Wrapper Class (CRegistry) Pin
Semion_N27-Jul-06 3:23
Semion_N27-Jul-06 3:23 
GeneralRe: Problem with the Registry Wrapper Class (CRegistry) Pin
Hamid_RT27-Jul-06 3:54
Hamid_RT27-Jul-06 3:54 
GeneralRe: Problem with the Registry Wrapper Class (CRegistry) Pin
Semion_N27-Jul-06 6:45
Semion_N27-Jul-06 6:45 
GeneralRe: Problem with the Registry Wrapper Class (CRegistry) Pin
Semion_N27-Jul-06 8:35
Semion_N27-Jul-06 8:35 
GeneralRe: Problem with the Registry Wrapper Class (CRegistry) Pin
Hamid_RT27-Jul-06 20:55
Hamid_RT27-Jul-06 20:55 
Questionretreive data from text box in vc++ 6 Pin
identity_8527-Jul-06 0:24
identity_8527-Jul-06 0:24 
AnswerRe: retreive data from text box in vc++ 6 Pin
see me27-Jul-06 0:31
see me27-Jul-06 0:31 

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.