Hi Edhy.
Have a look at the StrataListView sample:
'-- Cycle through all of the items
For Each bo As CustomersBO In Customers.GetEnumerable()
'-- Create a new item. The item is actually the first column as well. In this case, we do not want
' to show anything other than an icon. In this example, they will all be the same and user the key "User"
item = New StrataListViewItem(String.Empty, "User")
'-- Create the sub items. A sub-item is ultimately nothing more than a column.
item.SubItems.Add(String.Format("{0}, {1}", bo.cust_LastName, bo.cust_FirstName), MicroFour.StrataFrame.UI.Rendering.Enums.StrataEmbeddedControlType.Link)
item.SubItems.Add(String.Format("{0}, {1}, {2} {3}", bo.cust_Address1, bo.cust_City, bo.cust_State, bo.cust_Postal), String.Empty)
'-- Create a custom data item that stores the primary key of this record
item.CustomData.Add("PrimaryKey", bo.cust_pk)
'-- Add the item to the list
lstLink.Items.Add(item)
Next
According to this, the columns will be represented by the subitems, have you tried item.subitems.remove ?