format listbox

  • Thread starter Thread starter B.Etienne
  • Start date Start date
B

B.Etienne

I wish to display the contents of a 2 dimentional array
I think i should use a list box. I wish the output of my array in the
form of 4 rows and 4 colms like a matrix. Can you post some code for
this?

0 0 0 0 1
0 0 1 0 0
0 0 0 0 0
1 0 0 1 0
 
* B.Etienne said:
I wish to display the contents of a 2 dimentional array
I think i should use a list box. I wish the output of my array in the
form of 4 rows and 4 colms like a matrix. Can you post some code for
this?

0 0 0 0 1
0 0 1 0 0
0 0 0 0 0
1 0 0 1 0

Use a ListView with 'View' set to 'Details' and subitems containing the
values.
 
Back
Top