Removing Combo Box borders
C / C++ / MFC
3
Posts
3
Posters
0
Views
1
Watching
-
I must be being really stupid here; but I can't see any way to remove the sunken border which appears by default around a dropdown combo box. Is there any way to remove it? Joel Holdsworth
-
I must be being really stupid here; but I can't see any way to remove the sunken border which appears by default around a dropdown combo box. Is there any way to remove it? Joel Holdsworth
-
I must be being really stupid here; but I can't see any way to remove the sunken border which appears by default around a dropdown combo box. Is there any way to remove it? Joel Holdsworth
Derive your own CComboBox class and implement OnNcPaint handler. If you do nothing in that handler, no border will be appear. That is your starting point to draw your own border. Jaime