Esempio n. 1
0
 public Registration_Form()
 {
     InitializeComponent();
     db = new DBFunction();
     student = new Student();
     su = new StringUtil();
     enterBtnPress = false;
 }
Esempio n. 2
0
        public MainMenu_Form()
        {
            InitializeComponent();
            db = new DBFunction();

            Thread scanID = new Thread(new ThreadStart(db.ScanID));
            scanID.Start();
        }
Esempio n. 3
0
 public ViewStudent_Form()
 {
     InitializeComponent();
     db = new DBFunction();
 }
Esempio n. 4
0
 public Form_TestConnection()
 {
     InitializeComponent();
     db = new DBFunction();
     su = new StringUtil();
 }