This commit is contained in:
chi
2021-03-02 15:12:45 +09:00
parent 5ad9c18abf
commit a51b7c6963
2 changed files with 13 additions and 1 deletions

View File

@@ -110,6 +110,11 @@ namespace FEQ0000
if (this.cmbManu.Items.Count > 0) cmbManu.SelectedIndex = 0;
if (this.cmbType.Items.Count > 0) cmbType.SelectedIndex = 0;
if (this.dataType == eTabletype.ING)
dvc_param.HeaderText = "RCS Flag";
else
dvc_param.HeaderText = "Wafer Size";
}
private void equipmentBindingNavigatorSaveItem_Click(object sender, EventArgs e)
@@ -118,6 +123,8 @@ namespace FEQ0000
this.bsB.EndEdit();
this.bsF.EndEdit();
this.bsME.EndEdit();
this.bsIng.EndEdit();
try
{
if (dataType == eTabletype.BUMP)
@@ -128,6 +135,10 @@ namespace FEQ0000
{
this.taME.Update(this.dsEQ.EquipmentME);
}
else if(dataType == eTabletype.ING)
{
this.taIng.Update(this.dsEQ.EETGW_EquipmentIng);
}
else
{
this.taF.Update(this.dsEQ.EquipmentF);