private void btn_Edit_Click(object sender, EventArgs e)
        {
            f_EditConnection fe = new f_EditConnection();

            ///SEND current data
            fe.ShowDialog();
        }
示例#2
0
        private void btn_Menu_Connections_AddNewConnection_Click(object sender, EventArgs e)
        {
            f_EditConnection ec = new f_EditConnection();

            ec.Dbh = _dbh;
            ec.ShowDialog();
        }
        private void btn_Add_Click(object sender, EventArgs e)
        {
            f_EditConnection fe = new f_EditConnection();

            fe.ShowDialog();
        }