장비관리를 별도의 프로젝트로 분리 -
개별 프로젝트 참조를 위한 뼈대 생성 - 공용은 fcommon 으로 이 관
This commit is contained in:
55
Project/_Common/fNewPassword.cs
Normal file
55
Project/_Common/fNewPassword.cs
Normal file
@@ -0,0 +1,55 @@
|
||||
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 fNewPassword : Form
|
||||
{
|
||||
public fNewPassword(string userid)
|
||||
{
|
||||
InitializeComponent();
|
||||
this.tbUserID.Text = userid;
|
||||
}
|
||||
|
||||
private void fNewPassword_Load(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void button1_Click(object sender, EventArgs e)
|
||||
{
|
||||
if(tbPassO.Text.isEmpty())
|
||||
{
|
||||
Util.MsgE("OLd Password Error");
|
||||
tbPassO.Focus();
|
||||
return;
|
||||
}
|
||||
if(tbPass1.Text.isEmpty())
|
||||
{
|
||||
Util.MsgE("NEW Password Error");
|
||||
tbPass1.Focus();
|
||||
return;
|
||||
}
|
||||
if(tbPass2.Text.isEmpty())
|
||||
{
|
||||
Util.MsgE("New Password Verify Error");
|
||||
tbPass2.Focus();
|
||||
return;
|
||||
}
|
||||
if(tbPass2.Text != tbPass1.Text)
|
||||
{
|
||||
Util.MsgE("Password is not Same");
|
||||
tbPass2.Focus();
|
||||
tbPass2.SelectAll();
|
||||
return;
|
||||
}
|
||||
DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user