public void loadIndent(string indentNo) { store store = new store(); store.loadStoreIndentStore(indentNo); dataGridView1.DataSource = store.table; dataGridView1.ClearSelection(); foreach (DataGridViewColumn column in dataGridView1.Columns) { column.SortMode = DataGridViewColumnSortMode.NotSortable; } medicine med = new medicine(); med.getStoreIndentNo(label21.Text); label24.Text = med.count; }