dataGridView1.DataSource = dataView1;
DataView dataView1 = new DataView(JobQuery);
...so I basically want to replace JobsTable with JobsQueryName. The Access db is part of the solution (app) and the queries are created like tables in Access.
There must be an easier way to do this