Beispiel #1
0
 private void toolStripLabel2_Click(object sender, EventArgs e)
 {
     if (frmConsultaOrcamento == null || frmConsultaOrcamento.IsDisposed)
     {
         frmConsultaOrcamento           = new frmConsultaOrcamento();
         frmConsultaOrcamento.MdiParent = this;
         frmConsultaOrcamento.Show();
     }
     else
     {
         frmConsultaOrcamento.Show();
         frmConsultaOrcamento.BringToFront();
     }
 }
Beispiel #2
0
 private void cbVendas_SelectedIndexChanged(object sender, EventArgs e)
 {
     if (cbVendas.Text == "Orçamento")
     {
         if (frmConsultaOrcamento == null || frmConsultaOrcamento.IsDisposed)
         {
             frmConsultaOrcamento           = new frmConsultaOrcamento();
             frmConsultaOrcamento.MdiParent = this;
             frmConsultaOrcamento.Show();
         }
         else
         {
             frmConsultaOrcamento.Show();
             frmConsultaOrcamento.BringToFront();
         }
     }
 }