구매복사시 chk1,chk2 초기화 및 EB구매 컬럼의 필터 기능 추가

This commit is contained in:
chi
2024-06-26 13:58:30 +09:00
parent e4f8981491
commit dde60a7fe8
14 changed files with 3719 additions and 1616 deletions

View File

@@ -140,7 +140,7 @@ namespace FCOMMON
int t = 0;
if (!int.TryParse(leftStr, out l)) l = 0;
if (!int.TryParse(topStr, out t)) t = 0;
if (l != 0 || t != 0)
if (f.StartPosition != FormStartPosition.CenterScreen && (l != 0 || t != 0))
{
if (l > (maxWidth - 10)) l = 0;
if (t >= (maxHeigh - 10)) t = 0;