cell name 일괄 변경 기능 추가
This commit is contained in:
		
							
								
								
									
										34
									
								
								cVMS.NET_CS/Dialog/fCellNameChange.cs
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										34
									
								
								cVMS.NET_CS/Dialog/fCellNameChange.cs
									
									
									
									
									
										Normal 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; | ||||
|         } | ||||
|     } | ||||
| } | ||||
		Reference in New Issue
	
	Block a user
	 Arin(asus)
					Arin(asus)