Example #1
0
 private void textBox1_KeyDown(object sender, KeyEventArgs e)
 {
     if (e.KeyCode == Keys.Return && textBox1.Text != "")
     {
         FaturaForm fatura = new FaturaForm();
         int        msg    = 0;
         textBox1.Text = "";
         if (msg > 0)
         {
             fatura.Show();
         }
         else if (msg == -1)
         {
             MessageBox.Show("Dossier fechado");
             fatura.Dispose();
         }
         else if (msg == -3)
         {
             MessageBox.Show("Dossier já conferido");
             fatura.Dispose();
         }
         else
         {
             MessageBox.Show("Não encontrado");
             fatura.Dispose();
         }
     }
 }
Example #2
0
 private void faturaBrBtn_ItemClick_1(object sender, DevExpress.XtraBars.ItemClickEventArgs e)
 {
     faturaForm           = new FaturaForm();
     faturaForm.MdiParent = this;
     faturaForm.Show();
 }