private void BtnEntrar_Click(object sender, EventArgs e) { Operfil = new PerfilImportacao() { Usuario = txtUsr.Text, Token = txtPwd.Text, IdPerfil = "5882" }; if (txtUsr.Text.Length < 6) { MessageBox.Show("O usuário deve conter no minimo 6 caracteres", "AVISO", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); return; } if (txtPwd.Text.Length < 6) { MessageBox.Show("A senha deve conter no minimo 6 caracteres", "AVISO", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); return; } if (Logar.LogarVipp(txtUsr.Text, txtPwd.Text)) { Hide(); new Form1().ShowDialog(); Application.Exit(); } }
private void BtnEntrar_Click(object sender, EventArgs e) { Operfil = new PerfilImportacao() { Usuario = txtUsr.Text, Token = txtPwd.Text }; if (txtUsr.Text.Length < 6) { MessageBox.Show("O usuário deve conter no minimo 6 caracteres", "AVISO", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); return; } if (txtPwd.Text.Length < 6) { MessageBox.Show("A senha deve conter no minimo 6 caracteres", "AVISO", MessageBoxButtons.OK, MessageBoxIcon.Exclamation); return; } if (Logar.LogarVipp(txtUsr.Text, txtPwd.Text)) { Hide(); IniFile oIniFile = new IniFile("Config"); oIniFile.IniWriteString("Usuario", txtUsr.Text); oIniFile.IniWriteString("Senha", txtPwd.Text); Properties.Settings.Default.LembrarSenha = checkLembrar.Checked; Properties.Settings.Default.Save(); new Form1().ShowDialog(); //Application.Exit(); } }