what is the best for TABLE?

  • Thread starter Thread starter Bad_Kid
  • Start date Start date
B

Bad_Kid

I have to program something like dynamic table generator.
table has to look like x axe = numbers, y axe = characters, and table
elements are strings:
input is from file like: a5 = "hey"; a6 = "helou"; b1="haha";
c3="qwert"...

what to use as table??? Which is the easiest way?

thanx! bye
 
I presume you wish to view these on a grid like display.
I only ever use the ComponentOne flexgrid but you might be able to do the
same with the supplied datagrid.
Determine a distinct list of columns (a, b, c from the below example), add
these column to the grid.
Determine a distinct list of rows(1, 5, 6 from the below example), add the
MAX number of columns (5).
Go through your file and set the column/row pair to the appropriate value.
You can do this with the c1 Flexgrid, not sure about the win datagrid.

You could also use an embedded excel spreadsheet I think but I would not
recommend it.

HTH
JB
 
Back
Top