개정판 e7427d3c
dev issue #507 : minor
Change-Id: Iea69e2a3f85b1d7235842384a1dc91362e6fd337
DTI_PID/SPPIDConverter/ConverterForm.cs | ||
---|---|---|
146 | 146 |
private void btnID2DB_Click(object sender, EventArgs e) |
147 | 147 |
{ |
148 | 148 |
ID2DBSetting form = new ID2DBSetting(); |
149 |
DialogResult = form.ShowDialog(); |
|
149 |
DialogResult dialogResult = form.ShowDialog();
|
|
150 | 150 |
Project_Info _ProjectInfo = Project_Info.GetInstance(); |
151 | 151 |
_ProjectInfo.DefaultPath = Settings.Default.ProjectPath; |
152 | 152 |
_ProjectInfo.DBType = (ID2DB_Type)Settings.Default.ProjectDBType; |
... | ... | |
155 | 155 |
_ProjectInfo.DBUser = Settings.Default.ProjectDBUser; |
156 | 156 |
_ProjectInfo.DBPassword = Settings.Default.ProjectDBPassword; |
157 | 157 |
|
158 |
if (DialogResult == DialogResult.OK)
|
|
158 |
if (dialogResult == DialogResult.OK)
|
|
159 | 159 |
{ |
160 | 160 |
if (InitID2Project()) |
161 | 161 |
MessageBox.Show(Msg.SuccessProjectSelect, Msg.Information, MessageBoxButtons.OK, MessageBoxIcon.Information); |
내보내기 Unified diff