hi,
I have a problem regards with the using of oleDbDataAdpter in a Windows application form.

I need to create a simple application that reads the data from a MS Access Table and populates a comboBox.

I insert in my Form an oleDbDataAdpter and I create the connection and the query with the wizard.
I also insert in my form a dataset.


In the code, in the form_load event, I fill a dataset using the following instruction:

this->oleDbDataAdapter1->Fill(this->dataSet1,"Abbonamenti");

My problems are:
- I used the oledbDataAdapter correctly?
- How can I check if the dataset contains the correct data?

Thank you for the helpfulness.

Daniele.