コード例 #1
0
ファイル: LoginForm.cs プロジェクト: cuongjpitdnu/Project
        public LoginForm()
        {
            InitializeComponent();
            txtUserName.Focus();

            try
            {
                SQLiteCommon.InitDB();
            }
            catch (Exception e)
            {
                log.Error(e);
                ShowMsg(MessageBoxIcon.Error, e.Message);
            }
        }