Hello! I have a database in SQL and it is displayed all in visual studio, everything is written in C # ...
The procedure for deleting a string in the database works, but not in the studio! when you press a button, nothing happens at all, even no errors ... can you advise where approximately it can be viewed?
button code such
*private void button12_Click(object sender, EventArgs e) { if (PlanListDataGridView.SelectedRows != null) { int id = (int)PlanListDataGridView.SelectedRows[0].Cells[0].Value; PlanList.DeletePlan(id); PlanListBindingSource.DataSource = PlanList.GetPlanList(); } }*