示例#1
0
        private void AdminEditProfile_Click(object sender, EventArgs e)
        {
            EditProfile ep = new EditProfile(userId);

            ep.Show();
            this.Hide();
        }
        private void eDITPROFILEToolStripMenuItem_Click(object sender, EventArgs e)
        {
            DisposeAllButThis();
            EditProfile EP = new EditProfile(lbshwuser.Text);

            EP.MdiParent = this;
            EP.Show();
        }
示例#3
0
        private void PictureBox9_Click(object sender, EventArgs e)
        {
            if (dataGridView4.CurrentCell != null)
            {
                int i = dataGridView4.CurrentCell.RowIndex;

                EditProfile p = new EditProfile(levelProfile[i]);
                p.FormClosing += new FormClosingEventHandler(updAdminProfileActions);
                p.Show();
            }
        }