You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

396 lines
20 KiB

namespace ManagementSystem
{
partial class AccountingLedger
{
/// <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.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AccountingLedger));
this.tsButtons = new System.Windows.Forms.ToolStrip();
this.tsbSearch = new System.Windows.Forms.ToolStripButton();
this.tsbAdd = new System.Windows.Forms.ToolStripButton();
this.tsbEdit = new System.Windows.Forms.ToolStripButton();
this.tsbDelete = new System.Windows.Forms.ToolStripButton();
this.tsbSave = new System.Windows.Forms.ToolStripButton();
this.tsbOK = new System.Windows.Forms.ToolStripButton();
this.tsbCancel = new System.Windows.Forms.ToolStripButton();
this.tsbClean = new System.Windows.Forms.ToolStripButton();
this.tsbExit = new System.Windows.Forms.ToolStripButton();
this.label1 = new System.Windows.Forms.Label();
this.txtAccountingSubID = new System.Windows.Forms.TextBox();
this.btnGetSubAccID = new System.Windows.Forms.Button();
this.label2 = new System.Windows.Forms.Label();
this.dpAccEnd = new System.Windows.Forms.DateTimePicker();
this.dpAccStart = new System.Windows.Forms.DateTimePicker();
this.label5 = new System.Windows.Forms.Label();
this.dgvAccountingLedger = new System.Windows.Forms.DataGridView();
this.cAccountingID = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cAccountingDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cMemo = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cDebit = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cCredit = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.cBalance = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.txtAccountingSubName = new System.Windows.Forms.TextBox();
this.cbAccountingYear = new System.Windows.Forms.ComboBox();
this.label3 = new System.Windows.Forms.Label();
this.lbAccountingName = new System.Windows.Forms.Label();
this.tsButtons.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvAccountingLedger)).BeginInit();
this.SuspendLayout();
//
// tsButtons
//
this.tsButtons.ImageScalingSize = new System.Drawing.Size(25, 25);
this.tsButtons.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.tsbSearch,
this.tsbAdd,
this.tsbEdit,
this.tsbDelete,
this.tsbSave,
this.tsbOK,
this.tsbCancel,
this.tsbClean,
this.tsbExit});
this.tsButtons.Location = new System.Drawing.Point(0, 0);
this.tsButtons.Name = "tsButtons";
this.tsButtons.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
this.tsButtons.Size = new System.Drawing.Size(1219, 32);
this.tsButtons.TabIndex = 6;
this.tsButtons.Text = "功能按鈕表";
//
// tsbSearch
//
this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbSearch.Image = ((System.Drawing.Image)(resources.GetObject("tsbSearch.Image")));
this.tsbSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbSearch.Name = "tsbSearch";
this.tsbSearch.Size = new System.Drawing.Size(29, 29);
this.tsbSearch.Text = "搜尋";
this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
//
// tsbAdd
//
this.tsbAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsbAdd.Image")));
this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbAdd.Name = "tsbAdd";
this.tsbAdd.Size = new System.Drawing.Size(29, 29);
this.tsbAdd.Text = "新增";
this.tsbAdd.Visible = false;
//
// tsbEdit
//
this.tsbEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbEdit.Name = "tsbEdit";
this.tsbEdit.Size = new System.Drawing.Size(29, 29);
this.tsbEdit.Text = "修改";
this.tsbEdit.Visible = false;
//
// tsbDelete
//
this.tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbDelete.Name = "tsbDelete";
this.tsbDelete.Size = new System.Drawing.Size(29, 29);
this.tsbDelete.Text = "刪除";
this.tsbDelete.Visible = false;
//
// tsbSave
//
this.tsbSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbSave.Name = "tsbSave";
this.tsbSave.Size = new System.Drawing.Size(29, 29);
this.tsbSave.Text = "儲存";
this.tsbSave.Visible = false;
//
// tsbOK
//
this.tsbOK.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbOK.Image = ((System.Drawing.Image)(resources.GetObject("tsbOK.Image")));
this.tsbOK.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbOK.Name = "tsbOK";
this.tsbOK.Size = new System.Drawing.Size(29, 29);
this.tsbOK.Text = "確認";
this.tsbOK.Visible = false;
this.tsbOK.Click += new System.EventHandler(this.tsbOK_Click);
//
// tsbCancel
//
this.tsbCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbCancel.Image = ((System.Drawing.Image)(resources.GetObject("tsbCancel.Image")));
this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbCancel.Name = "tsbCancel";
this.tsbCancel.Size = new System.Drawing.Size(29, 29);
this.tsbCancel.Text = "取消";
this.tsbCancel.Visible = false;
this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
//
// tsbClean
//
this.tsbClean.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbClean.Image = ((System.Drawing.Image)(resources.GetObject("tsbClean.Image")));
this.tsbClean.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbClean.Name = "tsbClean";
this.tsbClean.Size = new System.Drawing.Size(29, 29);
this.tsbClean.Text = "清除";
this.tsbClean.Click += new System.EventHandler(this.tsbClean_Click);
//
// tsbExit
//
this.tsbExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
this.tsbExit.Image = ((System.Drawing.Image)(resources.GetObject("tsbExit.Image")));
this.tsbExit.ImageTransparentColor = System.Drawing.Color.Magenta;
this.tsbExit.Name = "tsbExit";
this.tsbExit.Size = new System.Drawing.Size(29, 29);
this.tsbExit.Text = "離開";
this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(12, 37);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(89, 20);
this.label1.TabIndex = 7;
this.label1.Text = "科目代碼:";
//
// txtAccountingSubID
//
this.txtAccountingSubID.Location = new System.Drawing.Point(107, 34);
this.txtAccountingSubID.Name = "txtAccountingSubID";
this.txtAccountingSubID.Size = new System.Drawing.Size(139, 29);
this.txtAccountingSubID.TabIndex = 1;
this.txtAccountingSubID.Leave += new System.EventHandler(this.txtAccountingSubID_Leave);
//
// btnGetSubAccID
//
this.btnGetSubAccID.Location = new System.Drawing.Point(440, 34);
this.btnGetSubAccID.Name = "btnGetSubAccID";
this.btnGetSubAccID.Size = new System.Drawing.Size(37, 29);
this.btnGetSubAccID.TabIndex = 9;
this.btnGetSubAccID.Text = "...";
this.btnGetSubAccID.UseVisualStyleBackColor = true;
this.btnGetSubAccID.Click += new System.EventHandler(this.btnGetSubAccID_Click);
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(771, 41);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(89, 20);
this.label2.TabIndex = 7;
this.label2.Text = "日期區間:";
//
// dpAccEnd
//
this.dpAccEnd.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dpAccEnd.Location = new System.Drawing.Point(1028, 34);
this.dpAccEnd.Name = "dpAccEnd";
this.dpAccEnd.Size = new System.Drawing.Size(137, 29);
this.dpAccEnd.TabIndex = 4;
//
// dpAccStart
//
this.dpAccStart.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dpAccStart.Location = new System.Drawing.Point(854, 34);
this.dpAccStart.Name = "dpAccStart";
this.dpAccStart.Size = new System.Drawing.Size(137, 29);
this.dpAccStart.TabIndex = 3;
//
// label5
//
this.label5.AutoSize = true;
this.label5.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.label5.Location = new System.Drawing.Point(999, 35);
this.label5.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label5.Name = "label5";
this.label5.Size = new System.Drawing.Size(21, 20);
this.label5.TabIndex = 11;
this.label5.Text = "~";
//
// dgvAccountingLedger
//
this.dgvAccountingLedger.AllowUserToAddRows = false;
this.dgvAccountingLedger.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvAccountingLedger.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvAccountingLedger.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.cAccountingID,
this.cAccountingDate,
this.cMemo,
this.cDebit,
this.cCredit,
this.cBalance});
this.dgvAccountingLedger.Location = new System.Drawing.Point(12, 101);
this.dgvAccountingLedger.Name = "dgvAccountingLedger";
this.dgvAccountingLedger.RowTemplate.Height = 24;
this.dgvAccountingLedger.Size = new System.Drawing.Size(1195, 322);
this.dgvAccountingLedger.TabIndex = 5;
//
// cAccountingID
//
this.cAccountingID.HeaderText = "傳票編號";
this.cAccountingID.Name = "cAccountingID";
this.cAccountingID.Width = 150;
//
// cAccountingDate
//
this.cAccountingDate.HeaderText = "傳票日期";
this.cAccountingDate.Name = "cAccountingDate";
this.cAccountingDate.Width = 200;
//
// cMemo
//
this.cMemo.HeaderText = "備註";
this.cMemo.Name = "cMemo";
this.cMemo.Width = 300;
//
// cDebit
//
this.cDebit.HeaderText = "借方金額";
this.cDebit.Name = "cDebit";
this.cDebit.Width = 200;
//
// cCredit
//
this.cCredit.HeaderText = "貸方金額";
this.cCredit.Name = "cCredit";
this.cCredit.Width = 200;
//
// cBalance
//
this.cBalance.HeaderText = "餘額";
this.cBalance.Name = "cBalance";
this.cBalance.Width = 200;
//
// txtAccountingSubName
//
this.txtAccountingSubName.Location = new System.Drawing.Point(252, 34);
this.txtAccountingSubName.Name = "txtAccountingSubName";
this.txtAccountingSubName.Size = new System.Drawing.Size(182, 29);
this.txtAccountingSubName.TabIndex = 2;
this.txtAccountingSubName.Leave += new System.EventHandler(this.txtAccountingSubName_Leave);
//
// cbAccountingYear
//
this.cbAccountingYear.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.cbAccountingYear.FormattingEnabled = true;
this.cbAccountingYear.Location = new System.Drawing.Point(605, 34);
this.cbAccountingYear.Margin = new System.Windows.Forms.Padding(5);
this.cbAccountingYear.Name = "cbAccountingYear";
this.cbAccountingYear.Size = new System.Drawing.Size(103, 28);
this.cbAccountingYear.TabIndex = 12;
this.cbAccountingYear.SelectedIndexChanged += new System.EventHandler(this.cbAccountingYear_SelectedIndexChanged);
//
// label3
//
this.label3.AutoSize = true;
this.label3.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.label3.Location = new System.Drawing.Point(519, 37);
this.label3.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
this.label3.Name = "label3";
this.label3.Size = new System.Drawing.Size(89, 20);
this.label3.TabIndex = 13;
this.label3.Text = "會計年度:";
//
// lbAccountingName
//
this.lbAccountingName.AutoSize = true;
this.lbAccountingName.Font = new System.Drawing.Font("微軟正黑體", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.lbAccountingName.Location = new System.Drawing.Point(16, 64);
this.lbAccountingName.Name = "lbAccountingName";
this.lbAccountingName.Size = new System.Drawing.Size(0, 34);
this.lbAccountingName.TabIndex = 14;
//
// AccountingLedger
//
this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(1219, 435);
this.Controls.Add(this.lbAccountingName);
this.Controls.Add(this.cbAccountingYear);
this.Controls.Add(this.label3);
this.Controls.Add(this.dgvAccountingLedger);
this.Controls.Add(this.dpAccEnd);
this.Controls.Add(this.dpAccStart);
this.Controls.Add(this.label5);
this.Controls.Add(this.btnGetSubAccID);
this.Controls.Add(this.txtAccountingSubName);
this.Controls.Add(this.txtAccountingSubID);
this.Controls.Add(this.label2);
this.Controls.Add(this.label1);
this.Controls.Add(this.tsButtons);
this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
this.Margin = new System.Windows.Forms.Padding(5);
this.Name = "AccountingLedger";
this.Text = "會計分類帳";
this.Load += new System.EventHandler(this.AccountingLedger_Load);
this.tsButtons.ResumeLayout(false);
this.tsButtons.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvAccountingLedger)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.ToolStrip tsButtons;
private System.Windows.Forms.ToolStripButton tsbSearch;
private System.Windows.Forms.ToolStripButton tsbAdd;
private System.Windows.Forms.ToolStripButton tsbEdit;
private System.Windows.Forms.ToolStripButton tsbDelete;
private System.Windows.Forms.ToolStripButton tsbSave;
private System.Windows.Forms.ToolStripButton tsbOK;
private System.Windows.Forms.ToolStripButton tsbCancel;
private System.Windows.Forms.ToolStripButton tsbClean;
private System.Windows.Forms.ToolStripButton tsbExit;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtAccountingSubID;
private System.Windows.Forms.Button btnGetSubAccID;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.DateTimePicker dpAccEnd;
private System.Windows.Forms.DateTimePicker dpAccStart;
private System.Windows.Forms.Label label5;
private System.Windows.Forms.DataGridView dgvAccountingLedger;
private System.Windows.Forms.TextBox txtAccountingSubName;
private System.Windows.Forms.ComboBox cbAccountingYear;
private System.Windows.Forms.Label label3;
private System.Windows.Forms.DataGridViewTextBoxColumn cAccountingID;
private System.Windows.Forms.DataGridViewTextBoxColumn cAccountingDate;
private System.Windows.Forms.DataGridViewTextBoxColumn cMemo;
private System.Windows.Forms.DataGridViewTextBoxColumn cDebit;
private System.Windows.Forms.DataGridViewTextBoxColumn cCredit;
private System.Windows.Forms.DataGridViewTextBoxColumn cBalance;
private System.Windows.Forms.Label lbAccountingName;
}
}