This commit is contained in:
ykh
2024-12-30 23:04:30 +09:00
parent c01051f024
commit 8f89991a09
45 changed files with 7567 additions and 1033 deletions

View File

@@ -882,7 +882,14 @@
Dim idx As Integer = DSETR.TReqUse.Rows.Count + 1
DR.Code = Format(idx, "000")
DR.GRP = GRP '//그룹 출력할떄 그룹으로 뽑는다.
DR.Desc = desc '//설명
If System.Diagnostics.Debugger.IsAttached Then
DR.Desc = "(" + DR.GRP + "-" + DR.Code + ")" + desc '//설명
Else
DR.Desc = desc '//설명
End If
'DR.Desc = desc '//설명
DR.UNIT = unit '//단위
DR.SIGN = sign '//기호
DR.EQ = eq '//등호 =
@@ -908,7 +915,12 @@
DR.Code = Format(DSETR.TReqUse.Rows.Count + 1, "000")
DR.GRP = GRP '//그룹 출력할떄 그룹으로 뽑는다.
DR.Desc = desc '//설명
If System.Diagnostics.Debugger.IsAttached Then
DR.Desc = "(" + DR.GRP + "-" + DR.Code + ")" + desc '//설명
Else
DR.Desc = desc '//설명
End If
DR.UNIT = unit '//단위
DR.SIGN = sign '//기호
DR.EQ = eq '//등호 =