private void buttonLogin_Click(object sender, EventArgs e) { String login = loginF.Text; String password = passwordF.Text; DB db = new DB(); DataTable table = new DataTable(); MySqlDataAdapter adapter = new MySqlDataAdapter(); MySqlCommand command = new MySqlCommand("SELECT * FROM `ussers` WHERE `UserLog` = @l AND `UserPass` = @p", db.GetConnection()); command.Parameters.Add("@l", MySqlDbType.VarChar).Value = login; command.Parameters.Add("@p", MySqlDbType.VarChar).Value = password; adapter.SelectCommand = command; adapter.Fill(table); if (table.Rows.Count > 0) { MessageBox.Show("Вы вошли в ваш аккаунт"); FormI form = new FormI(); this.Hide(); form.Show(); } else { MessageBox.Show("Неверный логин или пароль"); } }
private void просмотрДанныхToolStripMenuItem_Click(object sender, EventArgs e) { if (MessageBox.Show("Перейти в окно просмотра?", "Внимание", MessageBoxButtons.YesNo) == DialogResult.Yes) { FormI form = new FormI(); this.Hide(); form.Show(); } }