Click here to Skip to main content
15,893,381 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: GUO in DOS [modified] Pin
#realJSOP27-Jul-06 3:32
mve#realJSOP27-Jul-06 3:32 
QuestionRe: GUO in DOS Pin
rajeevktripathi27-Jul-06 3:45
rajeevktripathi27-Jul-06 3:45 
AnswerRe: GUO in DOS Pin
#realJSOP27-Jul-06 3:55
mve#realJSOP27-Jul-06 3:55 
AnswerRe: GUO in DOS Pin
Joe Woodbury27-Jul-06 10:38
professionalJoe Woodbury27-Jul-06 10:38 
GeneralRe: GUO in DOS Pin
Gary R. Wheeler29-Jul-06 4:19
Gary R. Wheeler29-Jul-06 4:19 
QuestionHow to get a list of Bluetooth Devices? Pin
LittleYellowBird27-Jul-06 2:24
LittleYellowBird27-Jul-06 2:24 
QuestionHttps with default browsers certificate store Pin
StuartP200227-Jul-06 2:13
StuartP200227-Jul-06 2:13 
Questionconcatenate strings with long Pin
identity_8527-Jul-06 2:01
identity_8527-Jul-06 2:01 
AnswerRe: concatenate strings with long Pin
Cedric Moonen27-Jul-06 2:06
Cedric Moonen27-Jul-06 2:06 
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 

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.