I am new to C# and .NET and am having a problem. I have a windows form application. I created a Ole data adapter to look at an Access Database with 3 tables. I then created a dataset which gets loaded by the adapter when the process starts. I then have a dataview which looks at one table in the dataset. next I created a datagridview which gets its data from the dataview. I run and eveything works and I see data. Now comes the problem. I wanted to access data in another table in the dataset. I created a view to the different table, then a datagridview looking at the new view. When I preview the datagridview I see the data as I should. However when I run the application only the first datagridview displays data, the second one is blank. Is there a property I missed or can I not have two views of the same data set, or is it something else? Any pointers would be appreciated.
Somewhat Frustrated,
DaveD3