VB.NET - What is DataViewManager?

What is DataViewManager?

A Dataset may contain multiple tables. The DataViewManager is a single object that manages all the DataViews. It can be used to view settings for all the tables in a DataSet.You could use it to bind multiple tables in a control such as a parent-child relationship.

The DataViewManager has a collection of DataViewSetting objects, each for a table in DataSet.Then you can even specify the default sort, filters etc in each of the DataViewSetting.
VB.NET - How to use performance monitor to diagnose bottlenecks in your application?
How to use performance monitor to diagnose bottlenecks in your application? - Click start->run and type perfmon to run performance monitor......
VB.NET - Explain how to configure Trace switches in the application's .config file.
Configure Trace switches in the application's .config file
VB.NET - What is the purpose of AddHandler keyword?
What is the purpose of AddHandler keyword? - Addhandler associates an event with its handler at runtime......
Post your comment