업무일지 메일 발송 로직에서. 휴일 체크 루틴 버그 수정

This commit is contained in:
chi
2021-05-28 11:34:30 +09:00
parent e1dce272bb
commit ba02049737
88 changed files with 7522 additions and 2224 deletions

View File

@@ -1,44 +1,44 @@
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;
}
}
}
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;
}
}
}