S
S. Justin Gengo
Ismail,
If you really need the data to be combined into one single table then you'll
have to create a second query to get the data out of table b. Then loop
through the rows returned adding them to table a something like this:
Dim Row As DataRow
For Each TableBDataRow As DataRow In TableB.Rows
Row = TableA.NewRow
'---Fill "Row" here.
Row.Item("FirstColumn") = TableBDataRow.Item("FirstColumn")
TableA.Rows.Add(Row)
Next
TableA.AcceptChanges()
--
Sincerely,
S. Justin Gengo, MCP
Web Developer / Programmer
Free code library at:
www.aboutfortunate.com
"Out of chaos comes order."
Nietzche
If you really need the data to be combined into one single table then you'll
have to create a second query to get the data out of table b. Then loop
through the rows returned adding them to table a something like this:
Dim Row As DataRow
For Each TableBDataRow As DataRow In TableB.Rows
Row = TableA.NewRow
'---Fill "Row" here.
Row.Item("FirstColumn") = TableBDataRow.Item("FirstColumn")
TableA.Rows.Add(Row)
Next
TableA.AcceptChanges()
--
Sincerely,
S. Justin Gengo, MCP
Web Developer / Programmer
Free code library at:
www.aboutfortunate.com
"Out of chaos comes order."
Nietzche