This commit is contained in:
chi
2023-01-15 23:05:53 +09:00
parent cd902327c8
commit 913ae6b261
28 changed files with 5278 additions and 2059 deletions

View File

@@ -252,7 +252,7 @@ namespace FPJ0000
//삭제컬럼인덱스
this.fpSpread1.SuspendLayout();
var statindex = this.fpSpread1.ActiveSheet.Columns["state"].Index;
var statindex = this.fpSpread1.ActiveSheet.Columns["Status"].Index;
for (int i = 0; i < this.fpSpread1.ActiveSheet.Rows.Count; i++)
{
var state = this.fpSpread1.ActiveSheet.GetValue(i, statindex);
@@ -597,6 +597,7 @@ namespace FPJ0000
newdr.costn = 0;
newdr.costo = 0;
newdr.cnt = 1;
newdr.pno = 0; //신규는 0번으로 한다
newdr.name = "Project Title";
var f = new fProjectData(newdr);
f.StartPosition = FormStartPosition.CenterScreen;
@@ -701,6 +702,9 @@ namespace FPJ0000
if (this.bs.Sort == sort) this.bs.Sort = sort;
else this.bs.Sort = sort;
break;
case 10:
this.bs.Sort = "pno";
break;
default:
this.bs.Sort = "";
break;