J John Sep 1, 2004 #1 Hi all, How do I programmatically determine if a datatable already exists in a dataset? Regards John.
Hi all, How do I programmatically determine if a datatable already exists in a dataset? Regards John.
S Shiva Sep 1, 2004 #2 DataSet.Tables.Contains ("<table name>") Hi all, How do I programmatically determine if a datatable already exists in a dataset? Regards John.
DataSet.Tables.Contains ("<table name>") Hi all, How do I programmatically determine if a datatable already exists in a dataset? Regards John.
C Cor Ligthert Sep 1, 2004 #3 Shiva, Just an addition, When is that name filled of course in the tablename By instance with da.Fill(ds, thistablename) When the table has no name you cannot find it. Cor
Shiva, Just an addition, When is that name filled of course in the tablename By instance with da.Fill(ds, thistablename) When the table has no name you cannot find it. Cor
S Shiva Sep 1, 2004 #5 I agree Cor. I assume the developer would have given a name to the DT. Thanks. Shiva, Just an addition, When is that name filled of course in the tablename By instance with da.Fill(ds, thistablename) When the table has no name you cannot find it. Cor
I agree Cor. I assume the developer would have given a name to the DT. Thanks. Shiva, Just an addition, When is that name filled of course in the tablename By instance with da.Fill(ds, thistablename) When the table has no name you cannot find it. Cor