DataTable.TableName

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I have 3 DataSets...

First I copy table + schema from DS2 into DS1... this new table is given the
name "Table"... then I copy table + schema from DS3 into DS1... because this
DS3 also names the table I want "Table"... suddenly I have an error because I
can't have two tables in DS1 with the same name...

When I try to change the name using... DS1.Tables(0).TableName("NewName")...
I get a compile error... how do I fix this issue?
 
Back
Top