示例#1
0
 public EnrollFingerprints(AxGrFingerXLib.AxGrFingerXCtrl grfingerxFormAuth, string[] person, StudentList studentList)
 {
     InitializeComponent();
     this.person      = person;
     this.action      = studentList.action;
     this.studentList = studentList;
     fingerprintOP    = new FingerprintOPFormUserMgt(grfingerxFormAuth, this, txtLog, person[3]);
     displayDetails();
     fingerprintOP.function = 0;
 }
示例#2
0
        public PersonalDetails(Main parent, StudentList staffList)
        {
            InitializeComponent();
            this.parent       = parent;
            connection        = DBHelper.GetConnection();
            this.isNew        = true;
            staffList.isOpen  = true;
            this.studentList  = staffList;
            cmdDelete.Enabled = false;
            cmdUpdate.Enabled = false;
            //searchPerson("");

            //fillSearchByCombo();
            fillGenderCombo();
            fillMaritalStatusCombo();
        }
 private void mnuPersonalDetails_Click(object sender, EventArgs e)
 {
     action      = "";
     studentList = new StudentList(this, grFingerXCtrl);
     new OpenForms(this).openForm(studentList);
 }