From b7bd99c010ae045a87d8ce22549723e412124f31 Mon Sep 17 00:00:00 2001 From: Cristiano Cunha Date: Sun, 26 Jun 2016 17:58:18 -0300 Subject: [PATCH] Sistema de Salvar Login Salvar login --- Controller/Outros/Ferramentas.cs | 10 ++++++++++ Software Ordem de servico.userprefs | 5 +++-- View/Outros/Frm_Login.cs | 8 ++++---- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/Controller/Outros/Ferramentas.cs b/Controller/Outros/Ferramentas.cs index 1211cb0..be06364 100644 --- a/Controller/Outros/Ferramentas.cs +++ b/Controller/Outros/Ferramentas.cs @@ -26,6 +26,11 @@ public static void SalvarUltimoLogin(string Login) { GeraraLog(ex); } + finally + { + if (sw != null) + sw.Close (); + } } public static string RecuperarUltimoLogin() @@ -47,6 +52,11 @@ public static string RecuperarUltimoLogin() { GeraraLog(ex); } + finally + { + if (sr != null) + sr.Close (); + } return saida; } diff --git a/Software Ordem de servico.userprefs b/Software Ordem de servico.userprefs index 17e145a..db42045 100644 --- a/Software Ordem de servico.userprefs +++ b/Software Ordem de servico.userprefs @@ -1,8 +1,9 @@  - + - + + diff --git a/View/Outros/Frm_Login.cs b/View/Outros/Frm_Login.cs index ae02438..6cd3eb9 100644 --- a/View/Outros/Frm_Login.cs +++ b/View/Outros/Frm_Login.cs @@ -10,8 +10,6 @@ public partial class Frm_Login : Form public Frm_Login() { InitializeComponent(); - - Txt_Login.Text = Ferramentas.RecuperarUltimoLogin (); } private void logar() @@ -25,10 +23,10 @@ private void logar() if (UsuarioBase.Senha == Txt_Senha.Text.TrimEnd()) { - Frm_Pai Pai = new Frm_Pai(UsuarioBase.Nome, UsuarioBase.NivelAcesso); - Ferramentas.SalvarUltimoLogin (Txt_Login.Text); + Frm_Pai Pai = new Frm_Pai(UsuarioBase.Nome, UsuarioBase.NivelAcesso); + this.Visible = false; Pai.Show(); @@ -92,6 +90,8 @@ Na hora de salvar se já existir um logo antigo ele ira salvar com o nome de log //Carregando o logo da empresa para o PictureBox pictureBox1.ImageLocation = "Logo.png"; } + + Txt_Login.Text = Ferramentas.RecuperarUltimoLogin (); } private void Txt_Senha_KeyPress(object sender, KeyPressEventArgs e)