Filling a DataGridView with a dataset using parameters
Posted: Tue  28 Jul 2015 18:57
				
				I created a dataset to my SQLite db and I set up a parameter to retrieve data from it. How do I fill by datagrid view with the dataset using a parameter? 
This is what I have used before to fill with out a parameter:
How would I pass a parameter in?
			This is what I have used before to fill with out a parameter:
Code: Select all
orderHeaderSurfaceDataGridView.DataSource = dsPendingOrders1.Tables[1];
            dsPendingOrders1.Fill();