267 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			267 lines
		
	
	
		
			12 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace WindowsFormsApp1.Account
 | |
| {
 | |
|     partial class Purchase_Book
 | |
|     {
 | |
|         /// <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();
 | |
|             System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
 | |
|             this.label1 = new System.Windows.Forms.Label();
 | |
|             this.start_Date = new System.Windows.Forms.DateTimePicker();
 | |
|             this.end_Date = new System.Windows.Forms.DateTimePicker();
 | |
|             this.label2 = new System.Windows.Forms.Label();
 | |
|             this.tb_purchase = new System.Windows.Forms.TextBox();
 | |
|             this.btn_Lookup = new System.Windows.Forms.Button();
 | |
|             this.btn_Print = new System.Windows.Forms.Button();
 | |
|             this.btn_Close = new System.Windows.Forms.Button();
 | |
|             this.btn_fax = new System.Windows.Forms.Button();
 | |
|             this.dataGridView1 = new System.Windows.Forms.DataGridView();
 | |
|             this.Column1 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.Column2 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.Column3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.Column4 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.Column5 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.Column6 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.Column7 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             this.Column8 = new System.Windows.Forms.DataGridViewTextBoxColumn();
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // label1
 | |
|             // 
 | |
|             this.label1.AutoSize = true;
 | |
|             this.label1.Location = new System.Drawing.Point(14, 15);
 | |
|             this.label1.Name = "label1";
 | |
|             this.label1.Size = new System.Drawing.Size(53, 12);
 | |
|             this.label1.TabIndex = 1;
 | |
|             this.label1.Text = "조회기간";
 | |
|             // 
 | |
|             // start_Date
 | |
|             // 
 | |
|             this.start_Date.CustomFormat = "yyyy-MM-dd";
 | |
|             this.start_Date.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
 | |
|             this.start_Date.Location = new System.Drawing.Point(67, 11);
 | |
|             this.start_Date.Name = "start_Date";
 | |
|             this.start_Date.Size = new System.Drawing.Size(85, 21);
 | |
|             this.start_Date.TabIndex = 32;
 | |
|             // 
 | |
|             // end_Date
 | |
|             // 
 | |
|             this.end_Date.CustomFormat = "yyyy-MM-dd";
 | |
|             this.end_Date.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
 | |
|             this.end_Date.Location = new System.Drawing.Point(165, 11);
 | |
|             this.end_Date.Name = "end_Date";
 | |
|             this.end_Date.Size = new System.Drawing.Size(85, 21);
 | |
|             this.end_Date.TabIndex = 33;
 | |
|             // 
 | |
|             // label2
 | |
|             // 
 | |
|             this.label2.AutoSize = true;
 | |
|             this.label2.Location = new System.Drawing.Point(268, 15);
 | |
|             this.label2.Name = "label2";
 | |
|             this.label2.Size = new System.Drawing.Size(65, 12);
 | |
|             this.label2.TabIndex = 34;
 | |
|             this.label2.Text = "매입거래처";
 | |
|             // 
 | |
|             // tb_purchase
 | |
|             // 
 | |
|             this.tb_purchase.Location = new System.Drawing.Point(332, 11);
 | |
|             this.tb_purchase.Name = "tb_purchase";
 | |
|             this.tb_purchase.Size = new System.Drawing.Size(129, 21);
 | |
|             this.tb_purchase.TabIndex = 35;
 | |
|             this.tb_purchase.KeyDown += new System.Windows.Forms.KeyEventHandler(this.tb_purchase_KeyDown);
 | |
|             // 
 | |
|             // btn_Lookup
 | |
|             // 
 | |
|             this.btn_Lookup.Location = new System.Drawing.Point(504, 10);
 | |
|             this.btn_Lookup.Name = "btn_Lookup";
 | |
|             this.btn_Lookup.Size = new System.Drawing.Size(77, 23);
 | |
|             this.btn_Lookup.TabIndex = 36;
 | |
|             this.btn_Lookup.Text = "조   회";
 | |
|             this.btn_Lookup.UseVisualStyleBackColor = true;
 | |
|             this.btn_Lookup.Click += new System.EventHandler(this.btn_Lookup_Click);
 | |
|             // 
 | |
|             // btn_Print
 | |
|             // 
 | |
|             this.btn_Print.Location = new System.Drawing.Point(600, 10);
 | |
|             this.btn_Print.Name = "btn_Print";
 | |
|             this.btn_Print.Size = new System.Drawing.Size(77, 23);
 | |
|             this.btn_Print.TabIndex = 36;
 | |
|             this.btn_Print.Text = "인   쇄";
 | |
|             this.btn_Print.UseVisualStyleBackColor = true;
 | |
|             this.btn_Print.Visible = false;
 | |
|             this.btn_Print.Click += new System.EventHandler(this.btn_Print_Click);
 | |
|             // 
 | |
|             // btn_Close
 | |
|             // 
 | |
|             this.btn_Close.Location = new System.Drawing.Point(792, 10);
 | |
|             this.btn_Close.Name = "btn_Close";
 | |
|             this.btn_Close.Size = new System.Drawing.Size(77, 23);
 | |
|             this.btn_Close.TabIndex = 36;
 | |
|             this.btn_Close.Text = "닫   기";
 | |
|             this.btn_Close.UseVisualStyleBackColor = true;
 | |
|             this.btn_Close.Click += new System.EventHandler(this.btn_Close_Click);
 | |
|             // 
 | |
|             // btn_fax
 | |
|             // 
 | |
|             this.btn_fax.Location = new System.Drawing.Point(696, 10);
 | |
|             this.btn_fax.Name = "btn_fax";
 | |
|             this.btn_fax.Size = new System.Drawing.Size(77, 23);
 | |
|             this.btn_fax.TabIndex = 36;
 | |
|             this.btn_fax.Text = "팩스 보내기";
 | |
|             this.btn_fax.UseVisualStyleBackColor = true;
 | |
|             this.btn_fax.Visible = false;
 | |
|             // 
 | |
|             // 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;
 | |
|             this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
 | |
|             this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
 | |
|             this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
 | |
|             this.Column1,
 | |
|             this.Column2,
 | |
|             this.Column3,
 | |
|             this.Column4,
 | |
|             this.Column5,
 | |
|             this.Column6,
 | |
|             this.Column7,
 | |
|             this.Column8});
 | |
|             dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
 | |
|             dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Window;
 | |
|             dataGridViewCellStyle2.Font = new System.Drawing.Font("굴림", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.ControlText;
 | |
|             dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
 | |
|             dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
 | |
|             dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False;
 | |
|             this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle2;
 | |
|             this.dataGridView1.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
 | |
|             this.dataGridView1.Location = new System.Drawing.Point(12, 39);
 | |
|             this.dataGridView1.Name = "dataGridView1";
 | |
|             this.dataGridView1.RowHeadersWidth = 19;
 | |
|             this.dataGridView1.RowTemplate.Height = 23;
 | |
|             this.dataGridView1.Size = new System.Drawing.Size(861, 419);
 | |
|             this.dataGridView1.TabIndex = 37;
 | |
|             // 
 | |
|             // Column1
 | |
|             // 
 | |
|             this.Column1.HeaderText = "매입일자";
 | |
|             this.Column1.Name = "Column1";
 | |
|             // 
 | |
|             // Column2
 | |
|             // 
 | |
|             this.Column2.HeaderText = "내용";
 | |
|             this.Column2.Name = "Column2";
 | |
|             this.Column2.Width = 300;
 | |
|             // 
 | |
|             // Column3
 | |
|             // 
 | |
|             this.Column3.HeaderText = "수량";
 | |
|             this.Column3.Name = "Column3";
 | |
|             this.Column3.Width = 50;
 | |
|             // 
 | |
|             // Column4
 | |
|             // 
 | |
|             this.Column4.HeaderText = "입고율";
 | |
|             this.Column4.Name = "Column4";
 | |
|             this.Column4.Width = 60;
 | |
|             // 
 | |
|             // Column5
 | |
|             // 
 | |
|             this.Column5.HeaderText = "매입금액";
 | |
|             this.Column5.Name = "Column5";
 | |
|             this.Column5.Width = 70;
 | |
|             // 
 | |
|             // Column6
 | |
|             // 
 | |
|             this.Column6.HeaderText = "결제금액";
 | |
|             this.Column6.Name = "Column6";
 | |
|             this.Column6.Width = 70;
 | |
|             // 
 | |
|             // Column7
 | |
|             // 
 | |
|             this.Column7.HeaderText = "현잔액";
 | |
|             this.Column7.Name = "Column7";
 | |
|             this.Column7.Width = 70;
 | |
|             // 
 | |
|             // Column8
 | |
|             // 
 | |
|             this.Column8.HeaderText = "비고";
 | |
|             this.Column8.Name = "Column8";
 | |
|             // 
 | |
|             // Purchase_Book
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(885, 471);
 | |
|             this.Controls.Add(this.dataGridView1);
 | |
|             this.Controls.Add(this.btn_fax);
 | |
|             this.Controls.Add(this.btn_Close);
 | |
|             this.Controls.Add(this.btn_Print);
 | |
|             this.Controls.Add(this.btn_Lookup);
 | |
|             this.Controls.Add(this.tb_purchase);
 | |
|             this.Controls.Add(this.label2);
 | |
|             this.Controls.Add(this.end_Date);
 | |
|             this.Controls.Add(this.start_Date);
 | |
|             this.Controls.Add(this.label1);
 | |
|             this.Name = "Purchase_Book";
 | |
|             this.Text = "매입장부";
 | |
|             this.Load += new System.EventHandler(this.Purchase_Book_Load);
 | |
|             ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit();
 | |
|             this.ResumeLayout(false);
 | |
|             this.PerformLayout();
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.Label label1;
 | |
|         private System.Windows.Forms.Label label2;
 | |
|         private System.Windows.Forms.Button btn_Print;
 | |
|         private System.Windows.Forms.Button btn_Close;
 | |
|         private System.Windows.Forms.Button btn_fax;
 | |
|         private System.Windows.Forms.DataGridView dataGridView1;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column1;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column2;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column3;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column4;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column5;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column6;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column7;
 | |
|         private System.Windows.Forms.DataGridViewTextBoxColumn Column8;
 | |
|         public System.Windows.Forms.TextBox tb_purchase;
 | |
|         public System.Windows.Forms.Button btn_Lookup;
 | |
|         public System.Windows.Forms.DateTimePicker start_Date;
 | |
|         public System.Windows.Forms.DateTimePicker end_Date;
 | |
|     }
 | |
| } | 
