Ejemplo n.º 1
0
 private void Button6_Click(object sender, EventArgs e)
 {
     Memo1.Clear();
     for (int i = 0; i <= ListaDispositivosNaSessao.Count - 1; i++)
     {
         Memo1.AppendText("\r-- Id: " + ListaDispositivosNaSessao[i].Id + " -- Código: " + ListaDispositivosNaSessao[i].a);
     }
 }
Ejemplo n.º 2
0
 private void Button3_Click(object sender, EventArgs e)
 {
     try
     {
         Memo1.Clear();
         Memo1.AppendText("Mês = " + Biblioteca.Desencripta(ListaPagamento[Grid1.CurrentRow.Index].a));
         Memo1.AppendText("\rAno = " + Biblioteca.Desencripta(ListaPagamento[Grid1.CurrentRow.Index].b));
         Memo1.AppendText("\rVencimento = " + Biblioteca.Desencripta(ListaPagamento[Grid1.CurrentRow.Index].c));
         Memo1.AppendText("\rBloqueio = " + Biblioteca.Desencripta(ListaPagamento[Grid1.CurrentRow.Index].d));
         Memo1.AppendText("\rLiberado = " + Biblioteca.Desencripta(ListaPagamento[Grid1.CurrentRow.Index].e));
     }
     catch (Exception eError)
     {
         MessageBox.Show(eError.Message);
     }
 }