프로젝트

일반

사용자정보

개정판 37183d04

ID37183d04bef158ffa3eb412584b3bc8e45f4465f
상위 d3113607
하위 e76cec4e

백흠경이(가) 일년 이상 전에 추가함

Fix: 설치 파일 스크립트에 log4net 추가

Change-Id: Ic220c1d16f2dcc6f423fc1ddf5921c5f863f713b

차이점 보기:

ID2.Manager/ID2.Manager/Forms/Login.cs
83 83
        {
84 84
            if (!IsValidatioin()) return;
85 85

  
86
            
87
            #region ID2 Project DB 경로를 찾아 appSetting에 저장한다.
88
            Configuration configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
89
            string ID2SQLiteInfo = configuration.AppSettings.Settings["ID2SQLiteInfo"].Value;
90
            if (!System.IO.File.Exists(ID2SQLiteInfo))
91
            {
92
                ID2SQLiteInfo = System.IO.Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.UserProfile), "Digital PID", "Project.db");
93
                if (!System.IO.File.Exists(ID2SQLiteInfo))
94
                {
95
                    Telerik.WinControls.RadMessageBox.Show($"Can't find {ID2SQLiteInfo} file.");
96

  
97
                    Telerik.WinControls.UI.RadOpenFileDialog openFileDialog = new Telerik.WinControls.UI.RadOpenFileDialog();
98
                    openFileDialog.Filter = "SQLite|*.db|";
99
                    if (openFileDialog.ShowDialog() == System.Windows.Forms.DialogResult.OK)
100
                    {
101
                        configuration.AppSettings.Settings["ID2SQLiteInfo"].Value = openFileDialog.FileName;
102
                        configuration.Save();
103
                        ConfigurationManager.RefreshSection("appSettings");
104
                    }
105
                }
106
                else
107
                {
108
                    configuration.AppSettings.Settings["ID2SQLiteInfo"].Value = ID2SQLiteInfo;
109
                    configuration.Save();
110
                    ConfigurationManager.RefreshSection("appSettings");
111
                }
112
            }
113
            #endregion
114

  
115 86
            //DB연결해서 체크로직추가
116 87
            UserInfo userInfo = new UserController().GetUserInfo(this.radTextBoxID.Text, Globals.EncryptionSHA256(this.radTextBoxPW.Text));
117 88

  

내보내기 Unified diff

클립보드 이미지 추가 (최대 크기: 500 MB)