I have a WebListbox with 22 columns on and the ColumnWidths is not working correctly. I’ve tried setting the ColumnWidths both in the IDE and alternately in the Shown event and I do not get the expected ColumnWidths at runtime. I’ve tried both of the following for the ColumnWidths values:
Me.ColumnWidths = "225,90,90,120,225,185,185,150,185,150,250,185,225,600,225,185,100,75,75,150,225,*"
Me.ColumnWidths = "225,90,90,120,225,185,185,150,185,150,250,185,225,600,225,185,100,75,75,150,225,75"
I’ve searched the Forum for an answer and the problem I seem to be having was occurring in 2020r1 and the solution was supposed to be to set ColumnWidths in the Shown Event, but that doesn’t work when I try it.
I do have ColumnWidths working in another WebListbox but the total ColumnWidths does not exceed the size of the Listbox when shown. The expected behavior is that if the ColumnWidths exceed the size of the listbox you can scroll the excess width. The thing is I can scroll but none of the widths are correct.
Is there a solution to this I just haven’t found it?