This commit is contained in:
chikyun.kim
2018-11-26 11:34:20 +09:00
parent 8002b1a254
commit 3f68c3c5e8
19 changed files with 1072 additions and 664 deletions

View File

@@ -85,7 +85,9 @@ namespace FCM0000
{
string sd = dtSD.Text;
string ed = dtED.Text;
this.ta.FillByName(this.dsMSSQL.Inventory, sd, ed,tbName.Text);
string name = "%";
if (tbName.Text != "") name = tbName.Text.Trim();
this.ta.FillByName(this.dsMSSQL.Inventory, sd, ed, name);
this.dsMSSQL.Inventory.AcceptChanges();
dv1.AutoResizeColumns();
}