Vous n’avez pas trouvé la réponse que vous recherchez ?
Posez votre questionprivate void Valid_Click( object sender, System.EventArgs e) { //Recherche du salarié sélectionné SqlCommand cmdRecherche <gras>new SqlCommand("Select * From salariés Where Num</gras> "+lblNum.Text, sqlConnection1); //Objet DataReader SqlDataReader drRecherche; //Ouverture connexion + drRecherche sqlConnection1.Open(); drRecherche = cmdRecherche.ExecuteReader(); //Lecture des informations drRecherche.Read(); lblPrénom.Text = drRecherche["Prénom"].ToString(); //Fermeture Connexion + drRecherche sqlConnection1.Close(); drRecherche.Close(); }