구매 엑셀 업로드 기능 완료 및 메뉴얼 작성

This commit is contained in:
chi
2023-08-02 15:38:02 +09:00
parent d8ddd7cfa7
commit 20e36a3624
16 changed files with 924 additions and 640 deletions

View File

@@ -11,6 +11,7 @@ namespace Project._Common
{
public partial class fNewPassword : Form
{
public string newpassword { get; set; }
public fNewPassword(string userid)
{
InitializeComponent();
@@ -19,7 +20,7 @@ namespace Project._Common
private void fNewPassword_Load(object sender, EventArgs e)
{
newpassword = string.Empty;
}
private void button1_Click(object sender, EventArgs e)
@@ -49,6 +50,7 @@ namespace Project._Common
tbPass2.SelectAll();
return;
}
newpassword = tbPass1.Text.Trim();
DialogResult = System.Windows.Forms.DialogResult.OK;
}
}