Click here to Skip to main content
15,905,874 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
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 
GeneralRe: How to disable the dropdown arrow of a combo box? Pin
Babu_Abdulsalam13-Dec-09 21:52
Babu_Abdulsalam13-Dec-09 21:52 
GeneralRe: How to disable the dropdown arrow of a combo box? Pin
rgaab17-Mar-14 14:15
rgaab17-Mar-14 14:15 
QuestionWM_COPYDATA failing? Pin
Dave_12-Mar-04 5:20
Dave_12-Mar-04 5:20 
AnswerRe: WM_COPYDATA failing? Pin
David Crow12-Mar-04 5:27
David Crow12-Mar-04 5:27 
GeneralRe: WM_COPYDATA failing? Pin
Dave_12-Mar-04 8:49
Dave_12-Mar-04 8:49 
GeneralRe: WM_COPYDATA failing? Pin
David Crow12-Mar-04 9:27
David Crow12-Mar-04 9:27 
GeneralRe: WM_COPYDATA failing? Pin
Dave_12-Mar-04 9:29
Dave_12-Mar-04 9:29 
GeneralRe: WM_COPYDATA failing? Pin
David Crow12-Mar-04 9:30
David Crow12-Mar-04 9:30 
GeneralRe: WM_COPYDATA failing? Pin
Sebastian S.14-May-04 2:33
Sebastian S.14-May-04 2:33 
GeneralRe: WM_COPYDATA failing? Pin
David Crow14-May-04 2:46
David Crow14-May-04 2:46 
General__asm and C++ inheritance Pin
jk6112-Mar-04 4:59
jk6112-Mar-04 4:59 
GeneralRe: __asm and C++ inheritance Pin
David Crow12-Mar-04 5:14
David Crow12-Mar-04 5:14 
GeneralRe: __asm and C++ inheritance Pin
jk6112-Mar-04 6:12
jk6112-Mar-04 6:12 
GeneralRe: __asm and C++ inheritance Pin
David Crow12-Mar-04 6:52
David Crow12-Mar-04 6:52 
GeneralRe: __asm and C++ inheritance Pin
jk6112-Mar-04 7:33
jk6112-Mar-04 7:33 
GeneralRe: __asm and C++ inheritance Pin
David Crow12-Mar-04 8:29
David Crow12-Mar-04 8:29 

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.