Exemplo n.º 1
0
 private void relatorioProdVendaBtn1_Click(object sender, EventArgs e)
 {
     if (telaRelatorio == null)
     {
         telaRelatorio           = new TelaRelatorio();
         telaRelatorio.Disposed += new EventHandler(telaRelatorio_Disposed);
         telaRelatorio.Show();
     }
 }
Exemplo n.º 2
0
 void telaRelatorio_Disposed(object sender, EventArgs e)
 {
     telaRelatorio = null;
 }