Example #1
0
 private void SaveManagerFormButton_Click(object sender, EventArgs e)
 {
     string query = "insert into ManagerTable (ManagerName, ManagerPosition) values (\'" + inputFullNameManager.Text + "\', \'" + inputPositionManager.Text + "\')";
     Database.executeQuery(query);
     ManagerFormTable managerTableForm = new ManagerFormTable();
     managerTableForm.Show();
     this.Close();
 }
Example #2
0
        private void SaveManagerFormButton_Click(object sender, EventArgs e)
        {
            string query = "insert into ManagerTable (ManagerName, ManagerPosition) values (\'" + inputFullNameManager.Text + "\', \'" + inputPositionManager.Text + "\')";

            Database.executeQuery(query);
            ManagerFormTable managerTableForm = new ManagerFormTable();

            managerTableForm.Show();
            this.Close();
        }
Example #3
0
 private void LookAtManagersbutton_Click(object sender, EventArgs e)
 {
     ManagerFormTable managerFormTable = new ManagerFormTable();
     managerFormTable.ShowDialog();
 }
Example #4
0
        private void LookAtManagersbutton_Click(object sender, EventArgs e)
        {
            ManagerFormTable managerFormTable = new ManagerFormTable();

            managerFormTable.ShowDialog();
        }