I have a panel (Windows Forms) and I want to disable a panels horizontal scrollbar. I tried this:
HorizontalScroll.Enabled = false;
But tha
Managed C++ code to hide HScroll Bar:
// Hide horizontal scroll bar HWND h = static_cast (this->Handle.ToPointer()); ShowScrollBar(h, SB_HORZ, false);