Listbox does not fill space

  • Thread starter Thread starter alex
  • Start date Start date
A

alex

Hi,
I placed a listbox on the left hand side, of an mdi parent, splitter
next to it. Docking of the splitter is Left. At the bottom I have a
status bar.

The list box does not fill the entire space. how come ? There are always
10 pixels or so left at the bottom.

Anyone had the same problem ?

Thanks
Alex
 
Hello,

alex said:
I placed a listbox on the left hand side, of an mdi parent,
splitter next to it. Docking of the splitter is Left. At the
bottom I have a status bar.

The list box does not fill the entire space. how come ?
There are always 10 pixels or so left at the bottom.

Set the listbox's 'IntegralHeight' property to 'False'.

HTH,
Herfried K. Wagner
 
alex said:
Hi,
I placed a listbox on the left hand side, of an mdi parent, splitter
next to it. Docking of the splitter is Left. At the bottom I have a

status bar.

The list box does not fill the entire space. how come ? There are
always
10 pixels or so left at the bottom.

Anyone had the same problem ?

listbox.integralheight = false
 
Back
Top