Richard_And_Trisha notice the column width set to 0 or 0% will show a little bit of string instead of hiding it completely v_columnwidths = "0x,3x,5x,10x,0x,10x,10x,10x,10x,0x,15x,15x,15x"
rgb Garry Hi, Great also possible having method Hide,Show column and get state ListBox.ShowColumn(col As Integer, show As Boolean) ListBox.GetColumn(col As Integer) As Boolean
Garry Good suggestion. I’ve added this for the next release: https://feedback.objo.dev/feature/1200 ListBox1.ColumnVisible(3) = False If Not ListBox1.ColumnVisible(3) Then ListBox1.ColumnVisible(3) = True End If Hiding a column remembers its previous pixel, percentage, or fill width, and showing it restores that width. This also works when a column is hidden using 0 or 0% in ColumnWidths.