Click here to Skip to main content
15,924,828 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to read a property file in C++ Pin
pl_kode24-Apr-08 20:26
pl_kode24-Apr-08 20:26 
GeneralAny tool for making a patch? [modified] Pin
followait24-Apr-08 18:22
followait24-Apr-08 18:22 
GeneralRe: Any tool for making a patch? Pin
Nelek27-Apr-08 1:34
protectorNelek27-Apr-08 1:34 
GeneralMonitoring FILE changes Pin
Imtiaz Murtaza24-Apr-08 7:56
Imtiaz Murtaza24-Apr-08 7:56 
GeneralRe: Monitoring FILE changes Pin
Maximilien24-Apr-08 8:11
Maximilien24-Apr-08 8:11 
GeneralRe: Monitoring FILE changes Pin
David Crow24-Apr-08 10:02
David Crow24-Apr-08 10:02 
GeneralChange Menu bar color Pin
Arnon A24-Apr-08 7:25
Arnon A24-Apr-08 7:25 
GeneralRe: Change Menu bar color Pin
Saurabh.Garg24-Apr-08 18:51
Saurabh.Garg24-Apr-08 18:51 
If you want to change the background color of menu bar then you will have to use owner drawn menus. One good article is this[^]. There are more articles at http://www.codeproject.com/KB/menus/index.aspx[^].

If you want to change the background of the popup menu then try this code.
CMenu* menu = GetMenu();
MENUINFO mInfo = {0};
mInfo.cbSize  = sizeof(MENUINFO);
mInfo.fMask   = MIM_APPLYTOSUBMENUS | MIM_BACKGROUND;
mInfo.hbrBack = CreateSolidBrush(RGB(0, 255, 0));
menu->SetMenuInfo(&mInfo);


-Saurabh
GeneralChanging foreground colour of Static Pin
prithaa24-Apr-08 6:45
prithaa24-Apr-08 6:45 
GeneralRe: Changing foreground colour of Static Pin
Mark Salsbery24-Apr-08 7:31
Mark Salsbery24-Apr-08 7:31 
GeneralRe: Changing foreground colour of Static Pin
prithaa24-Apr-08 23:31
prithaa24-Apr-08 23:31 
GeneralRe: Changing foreground colour of Static Pin
Mark Salsbery25-Apr-08 5:24
Mark Salsbery25-Apr-08 5:24 
GeneralWorker Thread Pin
Anthony988724-Apr-08 5:54
Anthony988724-Apr-08 5:54 
GeneralRe: Worker Thread Pin
CPallini24-Apr-08 5:59
mveCPallini24-Apr-08 5:59 
QuestionLinking scroll bars????? Pin
pblais24-Apr-08 5:53
pblais24-Apr-08 5:53 
AnswerRe: Linking scroll bars????? Pin
Saurabh.Garg24-Apr-08 18:55
Saurabh.Garg24-Apr-08 18:55 
QuestionHow to get my IP address in Win32 [modified] Pin
Hanan88824-Apr-08 5:13
Hanan88824-Apr-08 5:13 
AnswerRe: How to get my IP address in Win32 Pin
Maximilien24-Apr-08 5:22
Maximilien24-Apr-08 5:22 
GeneralRe: How to get my IP address in Win32 Pin
Hanan88824-Apr-08 5:27
Hanan88824-Apr-08 5:27 
AnswerRe: How to get my IP address in Win32 Pin
CPallini24-Apr-08 5:51
mveCPallini24-Apr-08 5:51 
GeneralRe: How to get my IP address in Win32 Pin
Hanan88824-Apr-08 5:54
Hanan88824-Apr-08 5:54 
QuestionRe: How to get my IP address in Win32 Pin
CPallini24-Apr-08 5:57
mveCPallini24-Apr-08 5:57 
GeneralRe: How to get my IP address in Win32 Pin
Hanan88824-Apr-08 6:04
Hanan88824-Apr-08 6:04 
AnswerRe: How to get my IP address in Win32 Pin
David Crow24-Apr-08 6:05
David Crow24-Apr-08 6:05 
GeneralRe: How to get my IP address in Win32 Pin
Hanan88824-Apr-08 6:25
Hanan88824-Apr-08 6:25 

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.