Hi,
You are welcome.
If you add the columns manually to the ListView, which you would do for an unbound ListView and you can also do on a bound one, you can create a custom ColumnHeader to implement the workaround until you get the Release d fix.
What you would need to do is to override the ColumnHeader.FireEvent method, intercept the objEvent.Type = "ChangeColumnWidth" and then make sure the Width property of that event type would be an integer, before calling the base.FireEvent() method. This is basically the fix that was made in Release d and should be fairly easy to implement in case of need.
Hope this helps,
Palli