private void butCvxSelect_Click(object sender,EventArgs e) { FormCvxs FormC=new FormCvxs(); FormC.IsSelectionMode=true; FormC.ShowDialog(); if(FormC.DialogResult!=DialogResult.OK) { return; } textCVXCode.Text=FormC.SelectedCvx.CvxCode; textVaccineName.Text=FormC.SelectedCvx.Description; }
private void butCvxSelect_Click(object sender, EventArgs e) { FormCvxs FormC = new FormCvxs(); FormC.IsSelectionMode = true; FormC.ShowDialog(); if (FormC.DialogResult != DialogResult.OK) { return; } textCVXCode.Text = FormC.SelectedCvx.CvxCode; textVaccineName.Text = FormC.SelectedCvx.Description; }