Sweep, thanks for bringing up the issue of datatype.
I have stored the data (in a text file) as 1 record per row and each data (Column) being separated by commas like most people would do. I StreamRead this file into a TextBox and use the Split method looping through for each row and column. The Textfile format is not set in stone yet. I am in the designing/planning stage of this program and searching for all (best) options. If you are suggesting the possibility of copping the values of an Array of Integers or Strings to a Column in the DataTable.
I like that idea. It gives more flexibility.
Each column will have a fixed Datatype, Maxlength and will always have value.
X = Alphanumeric
C# = Column Name
Format for Integer “#####0”
C1 C2 C3 C4 C5 C6 C7
dd/mm/yyyy,XXX,XXX,#####0,#####0,#####0,#####0
A simple sample of the TextFile would be like:
C1,C2,C3
10/31/2003,A,001
11/1/2003,B,002
11/2/2003,C,003
11/3/2003,D,004
11/4/2003,E,005
Whats your thoughts now?
Thanks again,