G Guest Apr 3, 2006 #1 How do you for the datagridview control to requery the database?? Thanks, --max
K Ken Tucker [MVP] Apr 3, 2006 #2 Hi, The datagridview control only displays the data. You need to have a datasource requery the database. Ken
Hi, The datagridview control only displays the data. You need to have a datasource requery the database. Ken
S Simmo Apr 3, 2006 #3 Using a dataset and dataadapter: dsMyDataSet.clear() daMyDataAdapter.Fill(dsMyDataSet.MyTable) That will update the datagrid's displayed data from the latest data in the table. That will work for any databound object. Troy
Using a dataset and dataadapter: dsMyDataSet.clear() daMyDataAdapter.Fill(dsMyDataSet.MyTable) That will update the datagrid's displayed data from the latest data in the table. That will work for any databound object. Troy