Click here to Skip to main content
15,922,584 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: Win32 TimerQueue problems on DUAL PROCESSORS Pin
Gavin Stark12-Mar-04 11:51
Gavin Stark12-Mar-04 11:51 
GeneralRe: Win32 TimerQueue problems on DUAL PROCESSORS Pin
Mike Dimmick12-Mar-04 12:12
Mike Dimmick12-Mar-04 12:12 
GeneralRe: Win32 TimerQueue problems on DUAL PROCESSORS Pin
Gavin Stark12-Mar-04 13:06
Gavin Stark12-Mar-04 13:06 
GeneralSTL Function Objects Pin
JWood12-Mar-04 8:28
JWood12-Mar-04 8:28 
GeneralRe: STL Function Objects Pin
Tim Smith12-Mar-04 8:43
Tim Smith12-Mar-04 8:43 
GeneralRe: STL Function Objects Pin
Mike Dimmick12-Mar-04 8:47
Mike Dimmick12-Mar-04 8:47 
GeneralRe: STL Function Objects Pin
JWood12-Mar-04 9:40
JWood12-Mar-04 9:40 
GeneralRe: STL Function Objects Pin
Mike Dimmick12-Mar-04 10:00
Mike Dimmick12-Mar-04 10:00 
GeneralGetting thread status programatically Pin
Deian12-Mar-04 8:03
Deian12-Mar-04 8:03 
GeneralRe: Getting thread status programatically Pin
MeterMan12-Mar-04 20:13
MeterMan12-Mar-04 20:13 
GeneralRe: Getting thread status programatically Pin
Prakash Nadar12-Mar-04 22:45
Prakash Nadar12-Mar-04 22:45 
GeneralRe: Getting thread status programatically Pin
Deian13-Mar-04 1:28
Deian13-Mar-04 1:28 
GeneralRe: Getting thread status programatically Pin
Blake Miller17-Mar-04 8:09
Blake Miller17-Mar-04 8:09 
GeneralNeed compact html rendering component for an mfc app Pin
Jim Howard12-Mar-04 6:40
Jim Howard12-Mar-04 6:40 
GeneralRe: Need compact html rendering component for an mfc app Pin
David Crow12-Mar-04 6:59
David Crow12-Mar-04 6:59 
GeneralRe: Need compact html rendering component for an mfc app Pin
Jim Howard12-Mar-04 7:06
Jim Howard12-Mar-04 7:06 
GeneralRe: Need compact html rendering component for an mfc app Pin
Joel Lucsy12-Mar-04 7:45
Joel Lucsy12-Mar-04 7:45 
GeneralRe: Need compact html rendering component for an mfc app Pin
Chris Richardson12-Mar-04 14:15
Chris Richardson12-Mar-04 14:15 
GeneralAccessing Values from a DLL Pin
mike-o12-Mar-04 5:56
mike-o12-Mar-04 5:56 
GeneralRe: Accessing Values from a DLL Pin
JWood12-Mar-04 8:09
JWood12-Mar-04 8:09 
GeneralRe: Accessing Values from a DLL Pin
mike-o12-Mar-04 9:23
mike-o12-Mar-04 9:23 
QuestionHow to disable the dropdown arrow of a combo box? Pin
bin892212-Mar-04 5:30
bin892212-Mar-04 5:30 
AnswerRe: How to disable the dropdown arrow of a combo box? Pin
Steve S12-Mar-04 5:46
Steve S12-Mar-04 5:46 
AnswerRe: How to disable the dropdown arrow of a combo box? Pin
MeterMan12-Mar-04 20:26
MeterMan12-Mar-04 20:26 
If your wanting to disable it do this
have a combo box and give it a control name like m_example
then on your button or whatever your using
lets say your using a button and the button is called History
you put under OnHistory()
m_example.EnableWindow(FALSE); // disabled combobox or whatever linked to
m_example.EnableWindow(TRUE); // enables combobox or whatever linked to

now if you wanna hide it all together
i would do this under the OnHistory()
m_example.ShowWindow(SW_HIDE); // hides the combobox or whatever linked to

if you want the window back then
m_example.ShowWindow(SW_SHOW);// shows the combobox or whatever linked to

GOOD LUCK,
HOPE THIS HELPS.


Win32newb

"Making windows programs worse than they already are"
GeneralRe: How to disable the dropdown arrow of a combo box? Pin
bin892215-Mar-04 5:55
bin892215-Mar-04 5:55 

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.