toshortstring -> tostring

This commit is contained in:
ChiKyun Kim
2025-12-19 08:23:13 +09:00
parent ab46ccb924
commit b1c3bbac42
76 changed files with 324 additions and 324 deletions

View File

@@ -107,8 +107,8 @@ namespace FEQ0000
//제목줄을 처리한다. 181029
List<string> cols = new List<string>();
string sDate = sd.Value.ToShortDateString();
string eDate = ed.Value.ToShortDateString();
string sDate = sd.Value.ToString("yyyy-MM-dd");
string eDate = ed.Value.ToString("yyyy-MM-dd");
for (int c = MinCol; c <= MaxCol; c++)
{
@@ -295,8 +295,8 @@ namespace FEQ0000
var taE = new dsPurchaseTableAdapters.PurchaseTableAdapter();
if (checkBox1.Checked) taE.DeleteImport(
sd.Value.ToShortDateString(),
ed.Value.ToShortDateString(),
sd.Value.ToString("yyyy-MM-dd"),
ed.Value.ToString("yyyy-MM-dd"),
FCOMMON.info.Login.no,
FCOMMON.info.Login.gcode);
taE.Update((dsPurchase.PurchaseDataTable)dt);