How to create Multiple fields in a ListBox

  • Thread starter Thread starter David Elliott
  • Start date Start date
D

David Elliott

I have a class derived from CollectionBase. I would like to display the
fields in the collection in the ListBox. The class has 4 fields of type
boolean, boolean, string, string and I would like to display the booleans
as check marks ( x = check mark). The output looking like:

x x title 1 author 1
x title 2 author 2
x title 3 author 3
title 4 author 4

Any thoughts or suggestions would be appreciated. I am looking to
do this WITHOUT using a DataGrid.

Thanks,
Dave

(e-mail address removed)
 
Hello,

David Elliott said:
x x title 1 author 1
x title 2 author 2
x title 3 author 3
title 4 author 4

Any thoughts or suggestions would be appreciated.
I am looking to do this WITHOUT using a DataGrid.

Why not use a listview?
 
Back
Top