//распечатка private void printForm() { if (patSel == true) { if (documWritten == false) { insCytZ(); } Form prFC = new printFormGist(setDataCy(), true, false); } else { System.Windows.Forms.MessageBox.Show("Выберите пациента"); } }
private void viewForm() { Form prFC = new printFormGist(setDataCy(), false, false); prFC.Show(); }
//распечатка private void рапечататьToolStripMenuItem_Click(object sender, EventArgs e) { if (patSel == true) { if (documWritten == false) { insCytZ(); } Form prFC = new printFormGist(setDataCy(), true, false); } else { System.Windows.Forms.MessageBox.Show("Выберите пациента"); } }
//просмотр выписки private void просмотрToolStripMenuItem_Click(object sender, EventArgs e) { Form prFC = new printFormGist(setDataCy(), false, false); prFC.Show(); }
private void распечататьToolStripMenuItem_Click(object sender, EventArgs e) { if (documWritten == false) { insCytZ(); } Form prFC = new printFormGist(setDataCy(), true, false); }
//распечатка private void printForm() { if (patSel == true) { if (documWritten == false) { insCytZ(); } Form prFC = new printFormGist(setDataCy(), true, false); } else { Warnings.WarnMessages CP = new Warnings.WarnMessages(); CP.warnChoosePatient(); } }
private void showForms() { if (this.checkBox1.Checked == true) { //HTMLPageAwaitingList.html Form prFC = new printFormGist(setAwaitList(), false, false); prFC.Show(); } if (this.checkBox2.Checked == true) { //HTMLPageSend.htm Form prPS = new printFormGist(setKomission(), false, false); prPS.Show(); } if (this.checkBox3.Checked == true) { //HTMLPageKomission.html Form prKo = new printFormGist(setPageSend(), false, false); prKo.Show(); } }