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(); }
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(); } }