파트리스트 기능 변경 및 수량 확정 기능 추가
This commit is contained in:
@@ -31,8 +31,9 @@ namespace FPJ0000
|
||||
var strWidth = "100";
|
||||
if(col.DataField != "")
|
||||
{
|
||||
strWidth = ini.get_Data("colsize", col.DataField, ""); //필드명으로 읽어서 자료가 없다면 인덱스로 한다
|
||||
if (strWidth == "") strWidth = ini.get_Data("colsize", "index_" + col.Index.ToString(), "0");
|
||||
strWidth = ini.get_Data("colsize", col.DataField, "100"); //필드명으로 읽어서 자료가 없다면 인덱스로 한다
|
||||
if (string.IsNullOrEmpty(strWidth) == true) strWidth = "100";
|
||||
//if (strWidth == "") strWidth = ini.get_Data("colsize", "index_" + col.Index.ToString(), "100");
|
||||
}
|
||||
else strWidth = ini.get_Data("colsize", "index_" + col.Index.ToString(), "0");
|
||||
col.Width = float.Parse(strWidth);
|
||||
|
||||
Reference in New Issue
Block a user