Esempio n. 1
0
        private void dataGridView_CellContentDoubleClick(object sender, DataGridViewCellEventArgs e)
        {
            InsertUpdateForm iuf = new InsertUpdateForm(id, user, pass);

            if (iuf.ShowDialog() == DialogResult.OK)
            {
                LoadData();
            }
        }
Esempio n. 2
0
        private void insertBtn_Click(object sender, EventArgs e)
        {
            id = -1;
            InsertUpdateForm iuf = new InsertUpdateForm(id, user, pass);

            if (iuf.ShowDialog() == DialogResult.OK)
            {
                LoadData();
            }
        }