| 1. |
How Can We Add Relation Between Tables In A Dataset? |
|
Answer» Answer :
Dim objRelation As DataRelation
objRelation=New Relations can be ADDED between “Data Table” objects using the “Data Relation” object. Above sample, CODE is trying to BUILD a RELATIONSHIP between “Customer” and “Addresses” “Data table” using “Customer Addresses” “Data Relation” object. Relations can be added between “Data Table” objects using the “Data Relation” object. Above sample, code is trying to build a relationship between “Customer” and “Addresses” “Data table” using “Customer Addresses” “Data Relation” object. |
|