1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20:
private " notpretty " () { Int32 CustomerID; CustomerID = Convert.ToInt32 (label_Custmer_ID.Text); la stringa query3 = “seleziona * a partire da Table_InvoiceItem DOVE CustomerID=@parameter1„; usando (SqlConnection con3 = nuovo SqlConnection (“\ \ SQLEXPRESS di dati source=INVENTOR-6FBADA; Catalog=AnindyaCD iniziale; Security=SSPI Integrated„)) { usando (SqlCommand cmd3 = nuovo SqlCommand (query3, con3)) { cmd3.Parameters.AddWithValue (“@parameter1„, CustomerID); usando (annuncio di SqlDataAdapter = nuovo SqlDataAdapter (query3, con3)) { ad.SelectCommand = cmd3; Gruppo di dati ds = nuovo gruppo di dati (); annuncio. Materiale di riempimento (ds, “Table_InvoiceItem„); dataGridView_showItemtoSell.DataSource = ds. Tabelle [0]; } } } }
1: 2: 3: 4: 5: 6: 7: 8: