Marcin,
"Marcin J." <luskan@aster.pl> schrieb:
> I have added and docked to the left a ListBox, now when I resize Form,
> list box resizes correctly in Width, but in Height it does not change its
> position smoothly. I mean that bottom size changes its position like it
> was computed modulo 10 - it looks like it snaps to grid points. I hope
> this is informative description.
That's because the listbox's 'IntegralHeight' property is set to 'True' by
default. This ensures that only whole items and not parts of items are
visible. You can set 'IntegralHeight' to 'False' if you want smooth sizing.

Signature
M S Herfried K. Wagner
M V P <URL:http://dotnet.mvps.org/>
V B <URL:http://dotnet.mvps.org/dotnet/faqs/>
Marcin J. - 12 Feb 2005 18:30 GMT
>> I have added and docked to the left a ListBox, now when I resize Form,
>> list box resizes correctly in Width, but in Height it does not change its
[quoted text clipped - 6 lines]
> visible. You can set 'IntegralHeight' to 'False' if you want smooth
> sizing.
thanks, that fixed it.