I have created a c# windows application that connects to an Access database.
My connection to the database is perfectly fine, but is there a way to run my Access developed queries so that the user can easily print the results? I know I can create reports in c#, but just want to use the ones developed in Access already. The query is qrySuppliers
// setup connection con to our database
OleDbConnection con = new OleDbConnection("Provider =
Microsoft.ACE.OLEDB.12.0; Data Source = Database3.accdb");
// create command object and open it
OleDbCommand cmd = con.CreateCommand();
con.Open();
Im not sure I got what you are trying to do but if you are trying to run the existing access queries you can do something like below:
If you query expects any parameter, then set them like below..
Thank since it is a windows app, I assume you will need to fill it in a datatable or something. So you can do that like below:
And if you already have a gridn and datasource on your form, than you can bind it as:
This should give some way to go.