Exemplo n.º 1
0
 private void openProfile()
 {
     // show profile information
     frmProfile FrmProfile = new frmProfile(getCurrentlySelectedUser());
     FrmProfile.MdiParent = this.MdiParent;
     FrmProfile.StartPosition = FormStartPosition.CenterParent;
     FrmProfile.Show();
 }
Exemplo n.º 2
0
        private void openProfile()
        {
            // show profile information
            frmProfile FrmProfile = new frmProfile(getCurrentlySelectedUser());

            FrmProfile.MdiParent     = this.MdiParent;
            FrmProfile.StartPosition = FormStartPosition.CenterParent;
            FrmProfile.Show();
        }
Exemplo n.º 3
0
 /*
  * Shows user's profile form
  */
 private void openProfile()
 {
     if (!focusForm("frmProfile"))
     {
         frmProfile FrmProfile = new frmProfile(this.current_user);
         FrmProfile.MdiParent     = this;
         FrmProfile.StartPosition = FormStartPosition.CenterParent;
         FrmProfile.Show();
     }
 }
Exemplo n.º 4
0
 /*
  * Shows user's profile form
  */
 private void openProfile()
 {
     if (!focusForm("frmProfile"))
     {
         frmProfile FrmProfile = new frmProfile(this.current_user);
         FrmProfile.MdiParent = this;
         FrmProfile.StartPosition = FormStartPosition.CenterParent;
         FrmProfile.Show(); 
     }
 }