|
I have a CheckedListbox in my app whose items are wider than the control. I have the Horizontal Scollbar turned on and a Horizontal scrolling extent set to 250. I also have the scrollbars AlwaysVisible property set to true... but the horizontal scrollbar will not appear after I've populated the CLB... is this a bug? Anyone know why it won't appear or what I have to do to make it appear?
Here's how the CLB is set up: ' 'clbSearchResults ' Me.clbSearchResults.CheckOnClick = True Me.clbSearchResults.HorizontalScrollbar = True Me.clbSearchResults.Location = New System.Drawing.Point(8, 240) Me.clbSearchResults.Name = "clbSearchResults" Me.clbSearchResults.ScrollAlwaysVisible = True Me.clbSearchResults.Size = New System.Drawing.Size(344, 164) Me.clbSearchResults.TabIndex = 11
TIA for any help...
Mike. |