示例#1
0
 public Registration_Form()
 {
     InitializeComponent();
     db = new DBFunction();
     student = new Student();
     su = new StringUtil();
     enterBtnPress = false;
 }
示例#2
0
        public MainMenu_Form()
        {
            InitializeComponent();
            db = new DBFunction();

            Thread scanID = new Thread(new ThreadStart(db.ScanID));
            scanID.Start();
        }
示例#3
0
 public ViewStudent_Form()
 {
     InitializeComponent();
     db = new DBFunction();
 }
 public Form_TestConnection()
 {
     InitializeComponent();
     db = new DBFunction();
     su = new StringUtil();
 }