Hi,
If you want to hide a column in a lsit box, set the particular colums width to 0. Eg. If you have 3 column list box and want to hide the 2nd column, try setting the Column Widths proprty of the list box as follows
1";0";2"
This will hide the second column of the list box.
To make the list box invisible, set its Visible property to False.
Me.List1.Visible = False Hope it helps. Let me know what happens.
With regards,
PGK