------------------------ =====* ISBN 체크 프로그램 *===== ★작업완료★ a. 현재 마크팀 배포완료. - 추후 수정사항발생시 수정할 것. ------------------------ ===== 작업중 ===== 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 체크해볼것)
221 lines
9.9 KiB
C#
221 lines
9.9 KiB
C#
namespace WindowsFormsApp1.Mac
|
|
{
|
|
partial class Mac_Input
|
|
{
|
|
/// <summary>
|
|
/// Required designer variable.
|
|
/// </summary>
|
|
private System.ComponentModel.IContainer components = null;
|
|
|
|
/// <summary>
|
|
/// Clean up any resources being used.
|
|
/// </summary>
|
|
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing && (components != null))
|
|
{
|
|
components.Dispose();
|
|
}
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Windows Form Designer generated code
|
|
|
|
/// <summary>
|
|
/// Required method for Designer support - do not modify
|
|
/// the contents of this method with the code editor.
|
|
/// </summary>
|
|
private void InitializeComponent()
|
|
{
|
|
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.label1 = new System.Windows.Forms.Label();
|
|
this.comboBox1 = new System.Windows.Forms.ComboBox();
|
|
this.btn_FileOpen = new System.Windows.Forms.Button();
|
|
this.tb_filePath = new System.Windows.Forms.TextBox();
|
|
this.button1 = new System.Windows.Forms.Button();
|
|
this.button2 = new System.Windows.Forms.Button();
|
|
this.dataGridView1 = new System.Windows.Forms.DataGridView();
|
|
this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
|
|
this.isbn = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.book_name = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.author = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.book_comp = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.price = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.Marc = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
|
|
this.panel1.Controls.Add(this.button2);
|
|
this.panel1.Controls.Add(this.button1);
|
|
this.panel1.Controls.Add(this.tb_filePath);
|
|
this.panel1.Controls.Add(this.btn_FileOpen);
|
|
this.panel1.Controls.Add(this.comboBox1);
|
|
this.panel1.Controls.Add(this.label1);
|
|
this.panel1.Location = new System.Drawing.Point(13, 13);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(1273, 40);
|
|
this.panel1.TabIndex = 0;
|
|
//
|
|
// label1
|
|
//
|
|
this.label1.AutoSize = true;
|
|
this.label1.Location = new System.Drawing.Point(11, 14);
|
|
this.label1.Name = "label1";
|
|
this.label1.Size = new System.Drawing.Size(29, 12);
|
|
this.label1.TabIndex = 1;
|
|
this.label1.Text = "구분";
|
|
//
|
|
// comboBox1
|
|
//
|
|
this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
|
|
this.comboBox1.FormattingEnabled = true;
|
|
this.comboBox1.Location = new System.Drawing.Point(45, 10);
|
|
this.comboBox1.Name = "comboBox1";
|
|
this.comboBox1.Size = new System.Drawing.Size(121, 20);
|
|
this.comboBox1.TabIndex = 2;
|
|
//
|
|
// btn_FileOpen
|
|
//
|
|
this.btn_FileOpen.Location = new System.Drawing.Point(172, 9);
|
|
this.btn_FileOpen.Name = "btn_FileOpen";
|
|
this.btn_FileOpen.Size = new System.Drawing.Size(75, 23);
|
|
this.btn_FileOpen.TabIndex = 3;
|
|
this.btn_FileOpen.Text = "열 기";
|
|
this.btn_FileOpen.UseVisualStyleBackColor = true;
|
|
this.btn_FileOpen.Click += new System.EventHandler(this.btn_FileOpen_Click);
|
|
//
|
|
// tb_filePath
|
|
//
|
|
this.tb_filePath.Location = new System.Drawing.Point(277, 9);
|
|
this.tb_filePath.Name = "tb_filePath";
|
|
this.tb_filePath.Size = new System.Drawing.Size(371, 21);
|
|
this.tb_filePath.TabIndex = 1;
|
|
//
|
|
// button1
|
|
//
|
|
this.button1.Location = new System.Drawing.Point(689, 8);
|
|
this.button1.Name = "button1";
|
|
this.button1.Size = new System.Drawing.Size(89, 23);
|
|
this.button1.TabIndex = 4;
|
|
this.button1.Text = "파일로 저장";
|
|
this.button1.UseVisualStyleBackColor = true;
|
|
//
|
|
// button2
|
|
//
|
|
this.button2.Location = new System.Drawing.Point(784, 8);
|
|
this.button2.Name = "button2";
|
|
this.button2.Size = new System.Drawing.Size(89, 23);
|
|
this.button2.TabIndex = 4;
|
|
this.button2.Text = "DB 저장";
|
|
this.button2.UseVisualStyleBackColor = true;
|
|
//
|
|
// dataGridView1
|
|
//
|
|
this.dataGridView1.AllowUserToAddRows = false;
|
|
this.dataGridView1.AllowUserToDeleteRows = false;
|
|
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
|
|
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
|
|
dataGridViewCellStyle1.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
|
|
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
|
|
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
|
|
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
|
|
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
|
|
this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
|
|
this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.isbn,
|
|
this.book_name,
|
|
this.author,
|
|
this.book_comp,
|
|
this.price,
|
|
this.Marc});
|
|
this.dataGridView1.Location = new System.Drawing.Point(13, 59);
|
|
this.dataGridView1.Name = "dataGridView1";
|
|
this.dataGridView1.RowTemplate.Height = 23;
|
|
this.dataGridView1.Size = new System.Drawing.Size(1273, 600);
|
|
this.dataGridView1.TabIndex = 1;
|
|
this.dataGridView1.RowPostPaint += new System.Windows.Forms.DataGridViewRowPostPaintEventHandler(this.dataGridView1_RowPostPaint);
|
|
//
|
|
// openFileDialog1
|
|
//
|
|
this.openFileDialog1.Filter = "마크 파일 (*.mrc)|*.mrc|모든 파일 (*.*)|*.*";
|
|
this.openFileDialog1.InitialDirectory = "C:";
|
|
this.openFileDialog1.Title = "열기";
|
|
//
|
|
// isbn
|
|
//
|
|
this.isbn.HeaderText = "isbn";
|
|
this.isbn.Name = "isbn";
|
|
this.isbn.Width = 90;
|
|
//
|
|
// book_name
|
|
//
|
|
this.book_name.HeaderText = "도서명";
|
|
this.book_name.Name = "book_name";
|
|
this.book_name.Width = 300;
|
|
//
|
|
// author
|
|
//
|
|
this.author.HeaderText = "저자";
|
|
this.author.Name = "author";
|
|
//
|
|
// book_comp
|
|
//
|
|
this.book_comp.HeaderText = "출판사";
|
|
this.book_comp.Name = "book_comp";
|
|
this.book_comp.Width = 150;
|
|
//
|
|
// price
|
|
//
|
|
this.price.HeaderText = "정가";
|
|
this.price.Name = "price";
|
|
this.price.Width = 70;
|
|
//
|
|
// Marc
|
|
//
|
|
this.Marc.HeaderText = "Marc";
|
|
this.Marc.Name = "Marc";
|
|
this.Marc.Width = 500;
|
|
//
|
|
// Mac_Input
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1298, 671);
|
|
this.Controls.Add(this.dataGridView1);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "Mac_Input";
|
|
this.Text = "Mac_Carry";
|
|
this.Load += new System.EventHandler(this.Mac_Input_Load);
|
|
this.panel1.ResumeLayout(false);
|
|
this.panel1.PerformLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Label label1;
|
|
private System.Windows.Forms.ComboBox comboBox1;
|
|
private System.Windows.Forms.Button button2;
|
|
private System.Windows.Forms.Button button1;
|
|
private System.Windows.Forms.TextBox tb_filePath;
|
|
private System.Windows.Forms.Button btn_FileOpen;
|
|
private System.Windows.Forms.DataGridView dataGridView1;
|
|
private System.Windows.Forms.OpenFileDialog openFileDialog1;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn isbn;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn book_name;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn author;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn book_comp;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn price;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn Marc;
|
|
}
|
|
} |