private void CompteRendu_Load(object sender, EventArgs e) { cboPracticien.ValueMember = "idMedecin"; cboPracticien.DisplayMember = "nom"; bsPracticien.DataSource = ControlleurM2.listepracticien(); cboPracticien.DataSource = bsPracticien; cboMotif.ValueMember = "idMotif"; cboMotif.DisplayMember = "libMotif"; bsMotif.DataSource = ControlleurM2.listemotif(); cboMotif.DataSource = bsMotif; }
public CompteRendu() { InitializeComponent(); bsPracticien.DataSource = ControlleurM2.listepracticien(); RAPPORT r = (RAPPORT)bsRapport.Current; bsRapport.DataSource = ControlleurM2.listerapport(); OFFRIR c = (OFFRIR)bsOffrir.Current; bsOffrir.DataSource = ControlleurM2.Medocs(); dgvPracticien.DataSource = bsOffrir; }