cell name 일괄 변경 기능 추가

This commit is contained in:
Arin(asus)
2024-11-26 21:14:53 +09:00
parent 87486bb022
commit b710f33e07
7 changed files with 751 additions and 300 deletions

View File

@@ -0,0 +1,34 @@
using AR;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace vmsnet.Dialog
{
public partial class fCellNameChange : Form
{
public fCellNameChange()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
var sn = (int)nudSV.Value;
var en = (int)nudEV.Value;
if(en < sn)
{
UTIL.MsgE("셀번호를 다시 지정하세요");
return;
}
DialogResult = DialogResult.OK;
}
}
}