How do I get the dataview name

sleepyplague

New member
Joined
Mar 18, 2005
Messages
1
Programming Experience
1-3
Create a dataview from a dataset and apply the dataview to a datagrid in a form
-------------------------------------
dim abc as new dataview
abc = new dataview(dataset, etc, etc, etc)
form.datagrid.datasource = abc

-------------------------------------
Now I would like to know the name of the dataview that is in the datagrids datasource.

Any help would be appreciated..
 
Back
Top