영문화완료
This commit is contained in:
@@ -37,8 +37,11 @@ namespace Project.Dialog
|
||||
|
||||
//현재 선택된 모델을 자동선택한다.
|
||||
cmbModelList.Text = PUB.Result.vModel.Title;
|
||||
|
||||
|
||||
this.KeyPreview = true;
|
||||
this.KeyDown += (s1, e1) =>
|
||||
{
|
||||
if (e1.KeyCode == Keys.Escape) this.Close();
|
||||
};
|
||||
|
||||
LoadSaveBCDtestData();
|
||||
}
|
||||
@@ -87,14 +90,14 @@ namespace Project.Dialog
|
||||
var cnt = this.tam.UpdateAll(this.dataSet1);
|
||||
if (cnt == 0)
|
||||
{
|
||||
UTIL.MsgE("저장된 내용이 없습니다");
|
||||
UTIL.MsgE("No content has been saved");
|
||||
}
|
||||
else UTIL.MsgI($"{cnt}건의 자료가 저장 되었습니다");
|
||||
else UTIL.MsgI($"{cnt} records have been saved");
|
||||
|
||||
var modelName = PUB.Result.vModel.Title;
|
||||
PUB.Result.BCDPattern = PUB.GetPatterns(modelName, false);
|
||||
PUB.Result.BCDIgnorePattern = PUB.GetPatterns(modelName, true);
|
||||
PUB.log.Add($"모델패턴로딩:{PUB.Result.BCDPattern.Count}/{PUB.Result.BCDIgnorePattern.Count}");
|
||||
PUB.log.Add($"Model pattern loading: {PUB.Result.BCDPattern.Count}/{PUB.Result.BCDIgnorePattern.Count}");
|
||||
dv1.AutoResizeColumns();
|
||||
}
|
||||
|
||||
@@ -102,7 +105,7 @@ namespace Project.Dialog
|
||||
{
|
||||
try
|
||||
{
|
||||
if(cust == "ALL")
|
||||
if (cust == "ALL")
|
||||
{
|
||||
dvcModelName.Visible = true;
|
||||
this.ta.FillAll(this.dataSet1.K4EE_Component_Reel_RegExRule);
|
||||
@@ -112,7 +115,7 @@ namespace Project.Dialog
|
||||
dvcModelName.Visible = false;
|
||||
this.ta.FillByWithSample(this.dataSet1.K4EE_Component_Reel_RegExRule, cust);
|
||||
}
|
||||
|
||||
|
||||
foreach (DataGridViewRow drow in this.dv1.Rows)
|
||||
{
|
||||
var drv = drow.DataBoundItem as DataRowView;
|
||||
@@ -254,13 +257,13 @@ namespace Project.Dialog
|
||||
var tacheck = new DataSet1TableAdapters.K4EE_Component_Reel_RegExRuleTableAdapter();
|
||||
if (tacheck.CheckExsist(newModelName, newDescription) > 0)
|
||||
{
|
||||
UTIL.MsgE("이미 존재하는 이름입니다");
|
||||
UTIL.MsgE("Name already exists");
|
||||
return;
|
||||
}
|
||||
|
||||
if (this.dataSet1.K4EE_Component_Reel_RegExRule.Where(t => t.CustCode.Equals(newModelName) && t.Description.Equals(newDescription)).Count() > 0)
|
||||
{
|
||||
UTIL.MsgE("이미 존재하는 이름입니다");
|
||||
UTIL.MsgE("Name already exists");
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user