=====* UniMarc [0.0134] 버전 업데이트 내용 *=====

** ERP 작업 전면 중단 (마크우선) **
*** 마크작성 - 칸채우기 버그 수정을 위해 테스트 계정 제외하고 잠금***

1. 회원 관리
ㄴ> 아이디 영어 숫자 조합으로만 적용.

2. 복본 조사
ㄴ> 복본 조사 속도 업그레이드 중.
This commit is contained in:
SeungHo Yang
2022-03-10 08:32:03 +09:00
parent ab823c9249
commit 90a4380e83
19 changed files with 761 additions and 338 deletions

View File

@@ -169,6 +169,13 @@ namespace WindowsFormsApp1.Home
private void btn_IDOverlap_Click(object sender, EventArgs e)
{
if (!System.Text.RegularExpressions.Regex.IsMatch(tb_ID.Text, @"^[a-zA-Z0-9]"))
{
MessageBox.Show("영어와 숫자 조합으로 작성해주세요!");
overlap = false;
return;
}
string cmd = _DB.DB_Search(Table_User, "id", tb_ID.Text);
string db_res = _DB.DB_Send_CMD_Search(cmd);
if (db_res == "") { MessageBox.Show("사용가능한 아이디입니다. [" + tb_ID.Text + "]"); overlap = true; }