=====* unimarc *=====
===== 작업중 ===== 주문관리 폼 재 수정작업중 - 팩스 및 이메일 기록 폼 제작해야함. - 제작완료 (현재 목록등록 -> 수정버튼 작업중) ㄴ> 작업 완료후 검토하고, 회계로 넘어갈 것. - 회계전환 회계전환. 매출상세(Sales_Detail.cs) 폼 작업완료. (버튼 이벤트 작업진행중) ㄴ> 매출집계에서 상세까지 가는 도중 MDI 부모로 적용되지않는 버그 수정작업완료. 기타 추가적인 버그 잡을것. / 바로빌 세금계산서알아볼것. ===== 보류 ===== b. 마크목록 폼 작성중 1. 엑셀반출 기능 추가중 사용 작업대기중 c. 마크 반입 폼 수정중 1. 불러오기는 되나 저장 기능이 필요함. ===== 완료 ===== 1. 주문관리 팩스연동 완료 2. 전송된 팩스 확인 작업개시, 이메일 전송모듈 수정완료. 3. 주문관리에서 주문처와 목록 검색하는 폼 검색 모듈도 재수정 완료함. 4. 데이터베이스 내 이미지URL을 가져오는작업 완료 목록집계 폼 재 수정작업 완료 - 확인 및 수정 필요. ISBN 체크 프로그램 => 본프로그램에 이식중. ㄴ> 코드는 다 옮겼으나 기존 사용하던 방식과 조금 달라서 버그발생 가능성 있음. ㄴ> 버그 체크 계속 해볼것. 21-04-15 ㄴ> 21_04_20 버그 없음. 2. 마크편집 폼 수정 중 (마크 반출 test프로젝트 진행완료, 본 프로젝트에 적용중. / 저장기능활성화 작업완료) 2-1. 기존의 칸채우기에서 예상되지 못한 버그가 발생하여 칸채우기 숨김. 2-2. 008태크 재배치 => TextBox에 적용완료. 변경사항 메모장으로 넘기는 작업 완료. 2-3. 저장기능 완료. (04.14 체크해볼것 - 완료) 주문관리 작업중 (DataGridView 주문처 엔터키 입력시 검색되게끔 하는 코드작성중) - 21.04.27 완료
This commit is contained in:
Binary file not shown.
@@ -28,18 +28,25 @@ namespace WindowsFormsApp1
|
||||
#endregion
|
||||
|
||||
MailMessage mail = new MailMessage();
|
||||
MailMessage mail_by_self = new MailMessage();
|
||||
|
||||
// 보내는 사람 이메일
|
||||
// mail.From = new MailAddress(arr_db[1]);
|
||||
// mail_by_self.From = new MailAddress(arr_db[1]);
|
||||
mail.From = new MailAddress("jhk132765@naver.com");
|
||||
mail_by_self.From = new MailAddress("jhk132765@naver.com");
|
||||
|
||||
// 받는 사람 이메일
|
||||
mail.To.Add(sender);
|
||||
mail_by_self.To.Add(arr_db[3]);
|
||||
|
||||
// 메일 제목
|
||||
mail.Subject = arr_db[0] + "주문분입니다.";
|
||||
mail_by_self.Subject = "Send_" + arr_db[0] + "주문분입니다.";
|
||||
|
||||
// 메일 내용
|
||||
mail.Body = arr_db[0] + "주문분입니다.";
|
||||
mail_by_self.Body = "Send_" + arr_db[0] + "주문분입니다.";
|
||||
|
||||
// 첨부파일
|
||||
System.Net.Mail.Attachment attachment;
|
||||
@@ -47,17 +54,22 @@ namespace WindowsFormsApp1
|
||||
// 첨부파일 붙이기
|
||||
attachment = new System.Net.Mail.Attachment(filePath);
|
||||
mail.Attachments.Add(attachment);
|
||||
mail_by_self.Attachments.Add(attachment);
|
||||
|
||||
// SMTP 및 포트 설정
|
||||
SmtpClient smtp = new SmtpClient(arr_db[3], Convert.ToInt32(arr_db[4]));
|
||||
SmtpClient smtp_by_self = new SmtpClient(arr_db[3], Convert.ToInt32(arr_db[4]));
|
||||
smtp.EnableSsl = true;
|
||||
smtp_by_self.EnableSsl = true;
|
||||
|
||||
// 계정 설정
|
||||
smtp.Credentials = new NetworkCredential(arr_db[1], arr_db[2]);
|
||||
smtp_by_self.Credentials = new NetworkCredential(arr_db[1], arr_db[2]);
|
||||
|
||||
try
|
||||
{
|
||||
smtp.Send(mail);
|
||||
smtp_by_self.Send(mail_by_self);
|
||||
MessageBox.Show("메일 전송 완료");
|
||||
return true;
|
||||
}
|
||||
|
||||
93
unimarc/WindowsFormsApp1/Main.Designer.cs
generated
93
unimarc/WindowsFormsApp1/Main.Designer.cs
generated
@@ -42,11 +42,8 @@
|
||||
this.목록등록편의ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.목록집계ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.주문입력ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.견적서ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.매입ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.매입반품입력ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.재고입력및조회ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.예가조회ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.회계ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.송금내역조회ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.송금등록ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
@@ -60,7 +57,6 @@
|
||||
this.매출조회ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.매출집계ToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.매출장부ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.매출입금ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.마크ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.설정ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.단축키설정ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
@@ -163,28 +159,28 @@
|
||||
// 사용자정보ToolStripMenuItem
|
||||
//
|
||||
this.사용자정보ToolStripMenuItem.Name = "사용자정보ToolStripMenuItem";
|
||||
this.사용자정보ToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
|
||||
this.사용자정보ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.사용자정보ToolStripMenuItem.Text = "사업자 정보";
|
||||
this.사용자정보ToolStripMenuItem.Click += new System.EventHandler(this.사용자정보ToolStripMenuItem_Click);
|
||||
//
|
||||
// 사용자관리ToolStripMenuItem
|
||||
//
|
||||
this.사용자관리ToolStripMenuItem.Name = "사용자관리ToolStripMenuItem";
|
||||
this.사용자관리ToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
|
||||
this.사용자관리ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.사용자관리ToolStripMenuItem.Text = "사용자 관리";
|
||||
this.사용자관리ToolStripMenuItem.Click += new System.EventHandler(this.사용자관리ToolStripMenuItem_Click);
|
||||
//
|
||||
// 납품거래처관리ToolStripMenuItem
|
||||
//
|
||||
this.납품거래처관리ToolStripMenuItem.Name = "납품거래처관리ToolStripMenuItem";
|
||||
this.납품거래처관리ToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
|
||||
this.납품거래처관리ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.납품거래처관리ToolStripMenuItem.Text = "납품 / 거래처 관리";
|
||||
this.납품거래처관리ToolStripMenuItem.Click += new System.EventHandler(this.납품거래처관리ToolStripMenuItem_Click);
|
||||
//
|
||||
// 주문처관리ToolStripMenuItem
|
||||
//
|
||||
this.주문처관리ToolStripMenuItem.Name = "주문처관리ToolStripMenuItem";
|
||||
this.주문처관리ToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
|
||||
this.주문처관리ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.주문처관리ToolStripMenuItem.Text = "주문처 관리";
|
||||
this.주문처관리ToolStripMenuItem.Click += new System.EventHandler(this.주문처관리ToolStripMenuItem_Click);
|
||||
//
|
||||
@@ -192,14 +188,14 @@
|
||||
//
|
||||
this.비밀번호변경ToolStripMenuItem.Enabled = false;
|
||||
this.비밀번호변경ToolStripMenuItem.Name = "비밀번호변경ToolStripMenuItem";
|
||||
this.비밀번호변경ToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
|
||||
this.비밀번호변경ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.비밀번호변경ToolStripMenuItem.Text = "비밀번호 변경";
|
||||
this.비밀번호변경ToolStripMenuItem.Click += new System.EventHandler(this.비밀번호변경ToolStripMenuItem_Click);
|
||||
//
|
||||
// 도서정보관리ToolStripMenuItem
|
||||
//
|
||||
this.도서정보관리ToolStripMenuItem.Name = "도서정보관리ToolStripMenuItem";
|
||||
this.도서정보관리ToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
|
||||
this.도서정보관리ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.도서정보관리ToolStripMenuItem.Text = "도서정보 관리";
|
||||
this.도서정보관리ToolStripMenuItem.Click += new System.EventHandler(this.도서정보관리ToolStripMenuItem_Click);
|
||||
//
|
||||
@@ -207,7 +203,7 @@
|
||||
//
|
||||
this.사용대장ToolStripMenuItem.Enabled = false;
|
||||
this.사용대장ToolStripMenuItem.Name = "사용대장ToolStripMenuItem";
|
||||
this.사용대장ToolStripMenuItem.Size = new System.Drawing.Size(175, 22);
|
||||
this.사용대장ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.사용대장ToolStripMenuItem.Text = "사용대장";
|
||||
this.사용대장ToolStripMenuItem.Click += new System.EventHandler(this.사용대장ToolStripMenuItem_Click);
|
||||
//
|
||||
@@ -218,11 +214,8 @@
|
||||
this.목록등록편의ToolStripMenuItem,
|
||||
this.목록집계ToolStripMenuItem,
|
||||
this.주문입력ToolStripMenuItem,
|
||||
this.견적서ToolStripMenuItem,
|
||||
this.매입ToolStripMenuItem,
|
||||
this.매입반품입력ToolStripMenuItem,
|
||||
this.재고입력및조회ToolStripMenuItem,
|
||||
this.예가조회ToolStripMenuItem});
|
||||
this.재고입력및조회ToolStripMenuItem});
|
||||
this.납품관리ToolStripMenuItem.Name = "납품관리ToolStripMenuItem";
|
||||
this.납품관리ToolStripMenuItem.Size = new System.Drawing.Size(84, 20);
|
||||
this.납품관리ToolStripMenuItem.Text = "납품관리(&D)";
|
||||
@@ -230,77 +223,52 @@
|
||||
// 물품등록ToolStripMenuItem
|
||||
//
|
||||
this.물품등록ToolStripMenuItem.Name = "물품등록ToolStripMenuItem";
|
||||
this.물품등록ToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
|
||||
this.물품등록ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.물품등록ToolStripMenuItem.Text = "물품등록";
|
||||
this.물품등록ToolStripMenuItem.Click += new System.EventHandler(this.물품등록ToolStripMenuItem_Click);
|
||||
//
|
||||
// 목록등록편의ToolStripMenuItem
|
||||
//
|
||||
this.목록등록편의ToolStripMenuItem.Name = "목록등록편의ToolStripMenuItem";
|
||||
this.목록등록편의ToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
|
||||
this.목록등록편의ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.목록등록편의ToolStripMenuItem.Text = "목록조회";
|
||||
this.목록등록편의ToolStripMenuItem.Click += new System.EventHandler(this.목록등록편의ToolStripMenuItem_Click);
|
||||
//
|
||||
// 목록집계ToolStripMenuItem
|
||||
//
|
||||
this.목록집계ToolStripMenuItem.Name = "목록집계ToolStripMenuItem";
|
||||
this.목록집계ToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
|
||||
this.목록집계ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.목록집계ToolStripMenuItem.Text = "목록집계";
|
||||
this.목록집계ToolStripMenuItem.Click += new System.EventHandler(this.목록집계ToolStripMenuItem_Click);
|
||||
//
|
||||
// 주문입력ToolStripMenuItem
|
||||
//
|
||||
this.주문입력ToolStripMenuItem.Name = "주문입력ToolStripMenuItem";
|
||||
this.주문입력ToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
|
||||
this.주문입력ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.주문입력ToolStripMenuItem.Text = "주문입력";
|
||||
this.주문입력ToolStripMenuItem.Click += new System.EventHandler(this.주문입력ToolStripMenuItem_Click);
|
||||
//
|
||||
// 견적서ToolStripMenuItem
|
||||
//
|
||||
this.견적서ToolStripMenuItem.Enabled = false;
|
||||
this.견적서ToolStripMenuItem.Name = "견적서ToolStripMenuItem";
|
||||
this.견적서ToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
|
||||
this.견적서ToolStripMenuItem.Text = "견적서";
|
||||
this.견적서ToolStripMenuItem.Click += new System.EventHandler(this.견적서ToolStripMenuItem_Click);
|
||||
//
|
||||
// 매입ToolStripMenuItem
|
||||
//
|
||||
this.매입ToolStripMenuItem.Name = "매입ToolStripMenuItem";
|
||||
this.매입ToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
|
||||
this.매입ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.매입ToolStripMenuItem.Text = "입고작업";
|
||||
this.매입ToolStripMenuItem.Click += new System.EventHandler(this.매입ToolStripMenuItem_Click);
|
||||
//
|
||||
// 매입반품입력ToolStripMenuItem
|
||||
//
|
||||
this.매입반품입력ToolStripMenuItem.Enabled = false;
|
||||
this.매입반품입력ToolStripMenuItem.Name = "매입반품입력ToolStripMenuItem";
|
||||
this.매입반품입력ToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
|
||||
this.매입반품입력ToolStripMenuItem.Text = "매입 / 반품입력";
|
||||
this.매입반품입력ToolStripMenuItem.Click += new System.EventHandler(this.매입반품입력ToolStripMenuItem_Click);
|
||||
//
|
||||
// 재고입력및조회ToolStripMenuItem
|
||||
//
|
||||
this.재고입력및조회ToolStripMenuItem.Name = "재고입력및조회ToolStripMenuItem";
|
||||
this.재고입력및조회ToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
|
||||
this.재고입력및조회ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.재고입력및조회ToolStripMenuItem.Text = "재고입력 및 조회";
|
||||
this.재고입력및조회ToolStripMenuItem.Click += new System.EventHandler(this.재고입력및조회ToolStripMenuItem_Click);
|
||||
//
|
||||
// 예가조회ToolStripMenuItem
|
||||
//
|
||||
this.예가조회ToolStripMenuItem.Enabled = false;
|
||||
this.예가조회ToolStripMenuItem.Name = "예가조회ToolStripMenuItem";
|
||||
this.예가조회ToolStripMenuItem.Size = new System.Drawing.Size(166, 22);
|
||||
this.예가조회ToolStripMenuItem.Text = "예가조회";
|
||||
this.예가조회ToolStripMenuItem.Click += new System.EventHandler(this.예가조회ToolStripMenuItem_Click);
|
||||
//
|
||||
// 회계ToolStripMenuItem
|
||||
//
|
||||
this.회계ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.송금내역조회ToolStripMenuItem,
|
||||
this.송금등록ToolStripMenuItem,
|
||||
this.매입장부ToolStripMenuItem,
|
||||
this.매출입력ToolStripMenuItem,
|
||||
this.매출입금ToolStripMenuItem});
|
||||
this.매출입력ToolStripMenuItem});
|
||||
this.회계ToolStripMenuItem.Name = "회계ToolStripMenuItem";
|
||||
this.회계ToolStripMenuItem.Size = new System.Drawing.Size(59, 20);
|
||||
this.회계ToolStripMenuItem.Text = "회계(&A)";
|
||||
@@ -332,14 +300,14 @@
|
||||
// 매입집계ToolStripMenuItem
|
||||
//
|
||||
this.매입집계ToolStripMenuItem.Name = "매입집계ToolStripMenuItem";
|
||||
this.매입집계ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.매입집계ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
|
||||
this.매입집계ToolStripMenuItem.Text = "매입 집계";
|
||||
this.매입집계ToolStripMenuItem.Click += new System.EventHandler(this.매입집계ToolStripMenuItem_Click);
|
||||
//
|
||||
// 매입장부ToolStripMenuItem1
|
||||
//
|
||||
this.매입장부ToolStripMenuItem1.Name = "매입장부ToolStripMenuItem1";
|
||||
this.매입장부ToolStripMenuItem1.Size = new System.Drawing.Size(180, 22);
|
||||
this.매입장부ToolStripMenuItem1.Size = new System.Drawing.Size(138, 22);
|
||||
this.매입장부ToolStripMenuItem1.Text = "매입 장부";
|
||||
this.매입장부ToolStripMenuItem1.Click += new System.EventHandler(this.매입장부ToolStripMenuItem1_Click);
|
||||
//
|
||||
@@ -347,7 +315,7 @@
|
||||
//
|
||||
this.매입미결제ToolStripMenuItem.Enabled = false;
|
||||
this.매입미결제ToolStripMenuItem.Name = "매입미결제ToolStripMenuItem";
|
||||
this.매입미결제ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.매입미결제ToolStripMenuItem.Size = new System.Drawing.Size(138, 22);
|
||||
this.매입미결제ToolStripMenuItem.Text = "매입 미결제";
|
||||
this.매입미결제ToolStripMenuItem.Click += new System.EventHandler(this.매입미결제ToolStripMenuItem_Click);
|
||||
//
|
||||
@@ -399,13 +367,6 @@
|
||||
this.매출장부ToolStripMenuItem.Text = "매출 장부";
|
||||
this.매출장부ToolStripMenuItem.Click += new System.EventHandler(this.매출미수금ToolStripMenuItem_Click);
|
||||
//
|
||||
// 매출입금ToolStripMenuItem
|
||||
//
|
||||
this.매출입금ToolStripMenuItem.Name = "매출입금ToolStripMenuItem";
|
||||
this.매출입금ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.매출입금ToolStripMenuItem.Text = "계산서 관리";
|
||||
this.매출입금ToolStripMenuItem.Click += new System.EventHandler(this.매출입금ToolStripMenuItem_Click);
|
||||
//
|
||||
// 마크ToolStripMenuItem
|
||||
//
|
||||
this.마크ToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
@@ -428,7 +389,7 @@
|
||||
this.불용어ToolStripMenuItem,
|
||||
this.작업지시서ToolStripMenuItem});
|
||||
this.설정ToolStripMenuItem.Name = "설정ToolStripMenuItem";
|
||||
this.설정ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
|
||||
this.설정ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.설정ToolStripMenuItem.Text = "설정";
|
||||
//
|
||||
// 단축키설정ToolStripMenuItem
|
||||
@@ -467,7 +428,7 @@
|
||||
this.엑셀작성ToolStripMenuItem,
|
||||
this.iSBN조회ToolStripMenuItem});
|
||||
this.마크작업ToolStripMenuItem.Name = "마크작업ToolStripMenuItem";
|
||||
this.마크작업ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
|
||||
this.마크작업ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.마크작업ToolStripMenuItem.Text = "마크 작업";
|
||||
//
|
||||
// 마크목록ToolStripMenuItem
|
||||
@@ -504,7 +465,7 @@
|
||||
this.반입ToolStripMenuItem,
|
||||
this.반출ToolStripMenuItem});
|
||||
this.반입및반출ToolStripMenuItem.Name = "반입및반출ToolStripMenuItem";
|
||||
this.반입및반출ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
|
||||
this.반입및반출ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.반입및반출ToolStripMenuItem.Text = "반입 및 반출";
|
||||
//
|
||||
// 반입ToolStripMenuItem
|
||||
@@ -527,7 +488,7 @@
|
||||
this.복본조사ToolStripMenuItem1,
|
||||
this.dLS복본조사ToolStripMenuItem});
|
||||
this.복본조사ToolStripMenuItem.Name = "복본조사ToolStripMenuItem";
|
||||
this.복본조사ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
|
||||
this.복본조사ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.복본조사ToolStripMenuItem.Text = "복본 조사";
|
||||
//
|
||||
// 복본조사ToolStripMenuItem1
|
||||
@@ -552,7 +513,7 @@
|
||||
this.검수ToolStripMenuItem,
|
||||
this.저자기호ToolStripMenuItem});
|
||||
this.부가기능ToolStripMenuItem.Name = "부가기능ToolStripMenuItem";
|
||||
this.부가기능ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
|
||||
this.부가기능ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.부가기능ToolStripMenuItem.Text = "부가기능";
|
||||
//
|
||||
// 마크수집ToolStripMenuItem
|
||||
@@ -589,7 +550,7 @@
|
||||
this.dLS조회ToolStripMenuItem,
|
||||
this.dLS입력ToolStripMenuItem});
|
||||
this.dLSToolStripMenuItem.Name = "dLSToolStripMenuItem";
|
||||
this.dLSToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
|
||||
this.dLSToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.dLSToolStripMenuItem.Text = "DLS";
|
||||
//
|
||||
// dLS조회ToolStripMenuItem
|
||||
@@ -613,7 +574,7 @@
|
||||
this.마크통계ToolStripMenuItem,
|
||||
this.장비관리ToolStripMenuItem1});
|
||||
this.기타ToolStripMenuItem.Name = "기타ToolStripMenuItem";
|
||||
this.기타ToolStripMenuItem.Size = new System.Drawing.Size(142, 22);
|
||||
this.기타ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
||||
this.기타ToolStripMenuItem.Text = "기타";
|
||||
//
|
||||
// 서류작성ToolStripMenuItem
|
||||
@@ -976,16 +937,12 @@
|
||||
private System.Windows.Forms.ToolStripMenuItem 목록등록편의ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 목록집계ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 주문입력ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 예가조회ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 견적서ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 매입ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 매입반품입력ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 재고입력및조회ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 회계ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 송금등록ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 매입장부ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 매출입력ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 매출입금ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 매입장부ToolStripMenuItem1;
|
||||
private System.Windows.Forms.ToolStripMenuItem 매입집계ToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem 매입미결제ToolStripMenuItem;
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@@ -830,7 +830,8 @@ namespace WindowsFormsApp1.Delivery
|
||||
dataGridView3.Rows[a].Cells["book_name3"].Value.ToString(),
|
||||
dataGridView3.Rows[a].Cells["author3"].Value.ToString(),
|
||||
dataGridView3.Rows[a].Cells["book_comp3"].Value.ToString(),
|
||||
dataGridView3.Rows[a].Cells["count3"].Value.ToString(),
|
||||
// dataGridView3.Rows[a].Cells["count3"].Value.ToString(),
|
||||
1.ToString(),
|
||||
dataGridView3.Rows[a].Cells["pay3"].Value.ToString(),
|
||||
dataGridView3.Rows[a].Cells["total3"].Value.ToString(),
|
||||
dataGridView3.Rows[a].Cells["etc3"].Value.ToString() };
|
||||
|
||||
18
unimarc/WindowsFormsApp1/홈/User_Infor.Designer.cs
generated
18
unimarc/WindowsFormsApp1/홈/User_Infor.Designer.cs
generated
@@ -331,6 +331,7 @@
|
||||
this.tb_boss.Name = "tb_boss";
|
||||
this.tb_boss.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_boss.TabIndex = 0;
|
||||
this.tb_boss.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_email_pw
|
||||
//
|
||||
@@ -339,6 +340,7 @@
|
||||
this.tb_email_pw.PasswordChar = '*';
|
||||
this.tb_email_pw.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_email_pw.TabIndex = 0;
|
||||
this.tb_email_pw.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_email_id
|
||||
//
|
||||
@@ -346,6 +348,7 @@
|
||||
this.tb_email_id.Name = "tb_email_id";
|
||||
this.tb_email_id.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_email_id.TabIndex = 0;
|
||||
this.tb_email_id.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_bank_comp
|
||||
//
|
||||
@@ -353,6 +356,7 @@
|
||||
this.tb_bank_comp.Name = "tb_bank_comp";
|
||||
this.tb_bank_comp.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_bank_comp.TabIndex = 0;
|
||||
this.tb_bank_comp.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_port
|
||||
//
|
||||
@@ -360,6 +364,7 @@
|
||||
this.tb_port.Name = "tb_port";
|
||||
this.tb_port.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_port.TabIndex = 0;
|
||||
this.tb_port.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
this.tb_port.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.tb_port_KeyPress);
|
||||
//
|
||||
// tb_smtp
|
||||
@@ -368,6 +373,7 @@
|
||||
this.tb_smtp.Name = "tb_smtp";
|
||||
this.tb_smtp.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_smtp.TabIndex = 0;
|
||||
this.tb_smtp.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_bank_no
|
||||
//
|
||||
@@ -375,6 +381,7 @@
|
||||
this.tb_bank_no.Name = "tb_bank_no";
|
||||
this.tb_bank_no.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_bank_no.TabIndex = 0;
|
||||
this.tb_bank_no.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_fax
|
||||
//
|
||||
@@ -382,6 +389,7 @@
|
||||
this.tb_fax.Name = "tb_fax";
|
||||
this.tb_fax.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_fax.TabIndex = 0;
|
||||
this.tb_fax.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_tel
|
||||
//
|
||||
@@ -389,6 +397,7 @@
|
||||
this.tb_tel.Name = "tb_tel";
|
||||
this.tb_tel.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_tel.TabIndex = 0;
|
||||
this.tb_tel.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_barea
|
||||
//
|
||||
@@ -396,6 +405,7 @@
|
||||
this.tb_barea.Name = "tb_barea";
|
||||
this.tb_barea.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_barea.TabIndex = 0;
|
||||
this.tb_barea.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_email
|
||||
//
|
||||
@@ -403,6 +413,7 @@
|
||||
this.tb_email.Name = "tb_email";
|
||||
this.tb_email.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_email.TabIndex = 0;
|
||||
this.tb_email.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_addr
|
||||
//
|
||||
@@ -410,6 +421,7 @@
|
||||
this.tb_addr.Name = "tb_addr";
|
||||
this.tb_addr.Size = new System.Drawing.Size(324, 21);
|
||||
this.tb_addr.TabIndex = 0;
|
||||
this.tb_addr.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_zip
|
||||
//
|
||||
@@ -418,6 +430,7 @@
|
||||
this.tb_zip.Size = new System.Drawing.Size(45, 21);
|
||||
this.tb_zip.TabIndex = 0;
|
||||
this.tb_zip.Text = " -";
|
||||
this.tb_zip.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_jongmok
|
||||
//
|
||||
@@ -425,6 +438,7 @@
|
||||
this.tb_jongmok.Name = "tb_jongmok";
|
||||
this.tb_jongmok.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_jongmok.TabIndex = 0;
|
||||
this.tb_jongmok.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_uptae
|
||||
//
|
||||
@@ -432,6 +446,7 @@
|
||||
this.tb_uptae.Name = "tb_uptae";
|
||||
this.tb_uptae.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_uptae.TabIndex = 0;
|
||||
this.tb_uptae.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_cobin
|
||||
//
|
||||
@@ -439,6 +454,7 @@
|
||||
this.tb_cobin.Name = "tb_cobin";
|
||||
this.tb_cobin.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_cobin.TabIndex = 0;
|
||||
this.tb_cobin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_bubin
|
||||
//
|
||||
@@ -446,6 +462,7 @@
|
||||
this.tb_bubin.Name = "tb_bubin";
|
||||
this.tb_bubin.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_bubin.TabIndex = 0;
|
||||
this.tb_bubin.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// tb_sangho
|
||||
//
|
||||
@@ -454,6 +471,7 @@
|
||||
this.tb_sangho.Name = "tb_sangho";
|
||||
this.tb_sangho.Size = new System.Drawing.Size(150, 21);
|
||||
this.tb_sangho.TabIndex = 0;
|
||||
this.tb_sangho.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_sangho_KeyDown);
|
||||
//
|
||||
// panel19
|
||||
//
|
||||
|
||||
@@ -102,5 +102,12 @@ namespace WindowsFormsApp1.Home
|
||||
Email mail = new Email();
|
||||
mail.Send_Test_mail("글로리아북", tb_email.Text, "테스트 메일입니다", "테스트 메일입니다");
|
||||
}
|
||||
|
||||
private void tb_sangho_KeyDown(object sender, KeyEventArgs e)
|
||||
{
|
||||
if (e.KeyCode == Keys.Escape) {
|
||||
btn_close_Click(null, null);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -204,8 +204,8 @@ namespace WindowsFormsApp1.회계
|
||||
int yesr = Convert.ToInt32(out_date.Substring(0, 4));
|
||||
int month = Convert.ToInt32(out_date.Substring(4, 2));
|
||||
int day = Convert.ToInt32(out_date.Substring(6, 2));
|
||||
sde.MdiParent = main;
|
||||
// sde.WindowState = FormWindowState.Maximized;
|
||||
sde.MdiParent = this.MdiParent;
|
||||
sde.WindowState = FormWindowState.Maximized;
|
||||
sde.Out_Date.Value = new DateTime(yesr, month, day);
|
||||
sde.tb_clt.Text = tb_clt.Text;
|
||||
sde.Show();
|
||||
|
||||
@@ -24,11 +24,6 @@ namespace WindowsFormsApp1.회계
|
||||
sb = _sb;
|
||||
compidx = sb.compidx;
|
||||
}
|
||||
public Sales_Detail(Main _main)
|
||||
{
|
||||
InitializeComponent();
|
||||
main = _main;
|
||||
}
|
||||
public Sales_Detail(Sales_Lookup _sl)
|
||||
{
|
||||
InitializeComponent();
|
||||
|
||||
Reference in New Issue
Block a user