|
-
Jul 20th, 2004, 04:18 PM
#1
Thread Starter
Addicted Member
How to Add tables in dataset
Hi all, at first glance you would know that I am new at .net.
I have created dataset with TABLE1.
I want to add TABLE2 in dataset.
what possible different options are there to add table in dataset ?
Thank you for your unselfish help.
-
Jul 20th, 2004, 04:56 PM
#2
Frenzied Member
NANC,
Three ways to add a table to the data set's data table collection. Search MSDN for "DataTableCollection.Add Method".
There you will find complete descriptions of the overloaded Add method, complete with sample code.
Mike
-
Jul 20th, 2004, 09:28 PM
#3
VB Code:
dim ds as new dataset()
ds.tables.add(new datatable("mzim"))
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|