1. 알람 AUTO설정 時, 관련 오류수정 후 적용

2.    NullBalance 관련 요청사항(절대치로 비교) 적용

3.    알람목록의 '비고'컬럼에 알람수치 입력 기능 추가
This commit is contained in:
Arin(asus)
2025-06-21 11:24:18 +09:00
parent d4c6715811
commit b189af27c3
9 changed files with 241 additions and 219 deletions

View File

@@ -180,7 +180,6 @@ namespace vmsnet
//
this.BindingNavigatorPositionItem.AccessibleName = "위치";
this.BindingNavigatorPositionItem.AutoSize = false;
this.BindingNavigatorPositionItem.Font = new System.Drawing.Font("맑은 고딕", 9F);
this.BindingNavigatorPositionItem.Name = "BindingNavigatorPositionItem";
this.BindingNavigatorPositionItem.Size = new System.Drawing.Size(50, 23);
this.BindingNavigatorPositionItem.Text = "0";
@@ -223,7 +222,6 @@ namespace vmsnet
//
this.tb_search.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
this.tb_search.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.tb_search.Font = new System.Drawing.Font("맑은 고딕", 9F);
this.tb_search.Name = "tb_search";
this.tb_search.Size = new System.Drawing.Size(100, 38);
this.tb_search.KeyUp += new System.Windows.Forms.KeyEventHandler(this.ToolStripTextBox1_KeyUp);

View File

@@ -191,7 +191,9 @@ namespace vmsnet
lv.SubItems.Add(item.MAXVOLT.ToString());
lv.SubItems.Add(item.MINVOLT.ToString());
lv.SubItems.Add(item.ATYPESTR);
lv.SubItems.Add(item.REMARK);
var remark = item.REMARK;
if (remark.isEmpty()) remark = item.AM2;
lv.SubItems.Add(remark);
switch (item.RTYPESTR.ToUpper())
{