: Thanks for the suggestion. To be honest I don't know anything really about DataSets. I need to make a multi-demensional table, and I was poking around a little with datasets but I only could figure out how to make columns. And I'll probably eventually need a table sized at least 20x20.
:
: - Komakala
:
Hi, multi-dimensional, 20x20 is two dimensions only, 20 rows with 20 columns!!!
DataSets do exactly that:
this is code automatically designed by VS 2003 just by using Xsd
public TimberRow AddTimberRow(
long Pos,
string BtName,
long Cnt,
System.Double Length,
System.Double Width,
System.Double Height,
System.Double Lfm,
System.Double Qm,
System.Double Vol,
string Material, .............
a timberRow contains columns, and they are like the rest of the table created visually by adding attributes to your table.
The above sample is part of a datatable with about 20 columns, but of course the amount of rows can be any number, depending on how much different data you need to store.
greets c.