Example #1
0
        // Dispaly database contents to data grid view
        private void HighScoresReadOnly_Load(object sender, EventArgs e)
        {
            HighScoreQuery query = new HighScoreQuery();

            highScoresBindingSource.DataSource = query.ShowTableData();
            dgv.DataSource = highScoresBindingSource;
        }
Example #2
0
 // Method to dispaly databse info to data grid view
 private void UpdateDGV()
 {
     highScoresBindingSource.DataSource = query.ShowTableData();
     dgv.DataSource = highScoresBindingSource;
 }