Files
Groupware/Project/_Common/fNewID.cs
chikyun.kim a873717126 장비관리를 별도의 프로젝트로 분리 -
개별 프로젝트 참조를 위한 뼈대 생성 - 공용은 fcommon 으로 이 관
2018-09-17 15:42:20 +09:00

45 lines
1003 B
C#

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Project._Common
{
public partial class fNewID : Form
{
public fNewID(string userid)
{
InitializeComponent();
this.tbIDO.Text = userid;
}
private void fNewPassword_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
if (tbIDN.Text.isEmpty())
{
Util.MsgE("Enter New ID");
tbIDN.Focus();
return;
}
if (tbIDN.Text == tbIDO.Text)
{
Util.MsgE("Same ID");
tbIDN.Focus();
tbIDN.SelectAll();
return;
}
DialogResult = System.Windows.Forms.DialogResult.OK;
}
}
}