Beispiel #1
0
        private void newUserToolStripMenuItem_Click(object sender, EventArgs e)
        {
            SFM0031_CreateUser frmCreateUser = new SFM0031_CreateUser(SFM0031_CreateUser.eOperationMode.CREATE_ACCOUNT, string.Empty);

            frmCreateUser.ShowDialog();
            RefreshUserSpread();
        }
Beispiel #2
0
        private void OpenCreateUserForm()
        {
            if (shtUser.Rows.Count == 0)
            {
                return;
            }
            if (shtUser.ActiveRowIndex < 0)
            {
                return;
            }
            string             UserAccount   = shtUser.Cells[shtUser.ActiveRowIndex, (int)eColUser.USER_ACCOUNT].Text;
            SFM0031_CreateUser frmCreateUser = new SFM0031_CreateUser(SFM0031_CreateUser.eOperationMode.PROPERTIES_SHOW, UserAccount);

            frmCreateUser.ShowDialog();
            RefreshUserSpread();
        }