Click here to Skip to main content
15,912,457 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Unicode issue, show chinese letters etc.!? Pin
bosfan29-Jan-09 0:54
bosfan29-Jan-09 0:54 
GeneralRe: Unicode issue, show chinese letters etc.!? Pin
«_Superman_»29-Jan-09 1:30
professional«_Superman_»29-Jan-09 1:30 
GeneralRe: Unicode issue, show chinese letters etc.!? Pin
bosfan29-Jan-09 1:32
bosfan29-Jan-09 1:32 
GeneralRe: Unicode issue, show chinese letters etc.!? Pin
bosfan29-Jan-09 1:42
bosfan29-Jan-09 1:42 
QuestionChanging the Image on the Toolbar button. Pin
gopalraja28-Jan-09 22:59
gopalraja28-Jan-09 22:59 
AnswerRe: Changing the Image on the Toolbar button. Pin
Chandrasekharan P28-Jan-09 23:13
Chandrasekharan P28-Jan-09 23:13 
AnswerRe: Changing the Image on the Toolbar button. Pin
prasad_som28-Jan-09 23:18
prasad_som28-Jan-09 23:18 
AnswerRe: Changing the Image on the Toolbar button. Pin
ATM@CodeProject29-Jan-09 0:18
ATM@CodeProject29-Jan-09 0:18 
Hi,
You can set cold and hot images for the toolbar.

This is the sample code.

CImageList img;
img.Create(IDB_HOTTOOLBARS, 22, 0, RGB(128, 128, 128));
m_wndToolBars.GetToolBarCtrl().SetHotImageList(&img);
img.Detach();
img.Create(IDB_COLDTOOLBAR, 22, 0, RGB(255, 255, 255));
m_wndToolBars.GetToolBarCtrl().SetImageList(&img);
img.Detach();

Here m_wndToolBars is the CToolBar object.And IDB_HOTTOOLBARS and IDB_COLDTOOLBAR are the Bitmap imges in the resourse editor.
Regards
Arun
Questioninstalled software Pin
aaasrgm28-Jan-09 22:48
aaasrgm28-Jan-09 22:48 
AnswerPlease ignore Repost.. Pin
SandipG 28-Jan-09 23:15
SandipG 28-Jan-09 23:15 
AnswerRe: installed software Pin
Chandrasekharan P28-Jan-09 23:16
Chandrasekharan P28-Jan-09 23:16 
QuestionMSFLXGRD problem in 64bit machine (MFC/C++) Pin
raesa28-Jan-09 21:59
raesa28-Jan-09 21:59 
AnswerRe: MSFLXGRD problem in 64bit machine (MFC/C++) Pin
«_Superman_»28-Jan-09 22:17
professional«_Superman_»28-Jan-09 22:17 
GeneralRe: MSFLXGRD problem in 64bit machine (MFC/C++) Pin
raesa28-Jan-09 22:22
raesa28-Jan-09 22:22 
GeneralRe: MSFLXGRD problem in 64bit machine (MFC/C++) Pin
«_Superman_»28-Jan-09 22:32
professional«_Superman_»28-Jan-09 22:32 
GeneralRe: MSFLXGRD problem in 64bit machine (MFC/C++) Pin
raesa28-Jan-09 23:13
raesa28-Jan-09 23:13 
GeneralRe: MSFLXGRD problem in 64bit machine (MFC/C++) Pin
«_Superman_»28-Jan-09 23:50
professional«_Superman_»28-Jan-09 23:50 
GeneralRe: MSFLXGRD problem in 64bit machine (MFC/C++) Pin
raesa29-Jan-09 0:35
raesa29-Jan-09 0:35 
GeneralRe: MSFLXGRD problem in 64bit machine (MFC/C++) Pin
«_Superman_»29-Jan-09 1:28
professional«_Superman_»29-Jan-09 1:28 
GeneralRe: MSFLXGRD problem in 64bit machine (MFC/C++) Pin
raesa29-Jan-09 18:21
raesa29-Jan-09 18:21 
QuestionCalling a function from another program Pin
Tom Hubin28-Jan-09 21:17
Tom Hubin28-Jan-09 21:17 
AnswerRe: Calling a function from another program Pin
Stuart Dootson28-Jan-09 22:14
professionalStuart Dootson28-Jan-09 22:14 
GeneralRe: Calling a function from another program Pin
Tom Hubin29-Jan-09 19:06
Tom Hubin29-Jan-09 19:06 
GeneralRe: Calling a function from another program Pin
Tom Hubin29-Jan-09 19:25
Tom Hubin29-Jan-09 19:25 
GeneralRe: Calling a function from another program Pin
Stuart Dootson29-Jan-09 23:22
professionalStuart Dootson29-Jan-09 23:22 

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.