
Originally Posted by
Krool
tragicshadow,
The list item height is slightly different from MS to VBCCR. When you want to set the height of the ListView exactly to a certain count of list items then use .ComputeControlSize.
Krool, VBCCR18 listview ocx version, doesn't respect the columnwidth set when the columns were first added like:
Code:
LV1.columnheaders.add Text:="abc", Width:=0
and had to be set again after all listitems were loaded like
Code:
LV1.columnheaders(1).Width=0
to hide them in report view.
And I wish that the columnheaders(1).autosize=false to turn off column autofit feature from adjusting the column width so that columnwidths would stay the same as when they were first added, rather than setting them again later after the listitems were loaded.
Above situation can be view at:https://youtu.be/qlDB1bLFznc
Thanks in advance.