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.

395 lines
20 KiB

  1. namespace ManagementSystem
  2. {
  3. partial class AccountingLedger
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(AccountingLedger));
  29. this.tsButtons = new System.Windows.Forms.ToolStrip();
  30. this.tsbSearch = new System.Windows.Forms.ToolStripButton();
  31. this.tsbAdd = new System.Windows.Forms.ToolStripButton();
  32. this.tsbEdit = new System.Windows.Forms.ToolStripButton();
  33. this.tsbDelete = new System.Windows.Forms.ToolStripButton();
  34. this.tsbSave = new System.Windows.Forms.ToolStripButton();
  35. this.tsbOK = new System.Windows.Forms.ToolStripButton();
  36. this.tsbCancel = new System.Windows.Forms.ToolStripButton();
  37. this.tsbClean = new System.Windows.Forms.ToolStripButton();
  38. this.tsbExit = new System.Windows.Forms.ToolStripButton();
  39. this.label1 = new System.Windows.Forms.Label();
  40. this.txtAccountingSubID = new System.Windows.Forms.TextBox();
  41. this.btnGetSubAccID = new System.Windows.Forms.Button();
  42. this.label2 = new System.Windows.Forms.Label();
  43. this.dpAccEnd = new System.Windows.Forms.DateTimePicker();
  44. this.dpAccStart = new System.Windows.Forms.DateTimePicker();
  45. this.label5 = new System.Windows.Forms.Label();
  46. this.dgvAccountingLedger = new System.Windows.Forms.DataGridView();
  47. this.cAccountingID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  48. this.cAccountingDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  49. this.cMemo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  50. this.cDebit = new System.Windows.Forms.DataGridViewTextBoxColumn();
  51. this.cCredit = new System.Windows.Forms.DataGridViewTextBoxColumn();
  52. this.cBalance = new System.Windows.Forms.DataGridViewTextBoxColumn();
  53. this.txtAccountingSubName = new System.Windows.Forms.TextBox();
  54. this.cbAccountingYear = new System.Windows.Forms.ComboBox();
  55. this.label3 = new System.Windows.Forms.Label();
  56. this.lbAccountingName = new System.Windows.Forms.Label();
  57. this.tsButtons.SuspendLayout();
  58. ((System.ComponentModel.ISupportInitialize)(this.dgvAccountingLedger)).BeginInit();
  59. this.SuspendLayout();
  60. //
  61. // tsButtons
  62. //
  63. this.tsButtons.ImageScalingSize = new System.Drawing.Size(25, 25);
  64. this.tsButtons.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  65. this.tsbSearch,
  66. this.tsbAdd,
  67. this.tsbEdit,
  68. this.tsbDelete,
  69. this.tsbSave,
  70. this.tsbOK,
  71. this.tsbCancel,
  72. this.tsbClean,
  73. this.tsbExit});
  74. this.tsButtons.Location = new System.Drawing.Point(0, 0);
  75. this.tsButtons.Name = "tsButtons";
  76. this.tsButtons.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
  77. this.tsButtons.Size = new System.Drawing.Size(1219, 32);
  78. this.tsButtons.TabIndex = 6;
  79. this.tsButtons.Text = "功能按鈕表";
  80. //
  81. // tsbSearch
  82. //
  83. this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  84. this.tsbSearch.Image = ((System.Drawing.Image)(resources.GetObject("tsbSearch.Image")));
  85. this.tsbSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
  86. this.tsbSearch.Name = "tsbSearch";
  87. this.tsbSearch.Size = new System.Drawing.Size(29, 29);
  88. this.tsbSearch.Text = "搜尋";
  89. this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
  90. //
  91. // tsbAdd
  92. //
  93. this.tsbAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  94. this.tsbAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsbAdd.Image")));
  95. this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
  96. this.tsbAdd.Name = "tsbAdd";
  97. this.tsbAdd.Size = new System.Drawing.Size(29, 29);
  98. this.tsbAdd.Text = "新增";
  99. this.tsbAdd.Visible = false;
  100. //
  101. // tsbEdit
  102. //
  103. this.tsbEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  104. this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
  105. this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
  106. this.tsbEdit.Name = "tsbEdit";
  107. this.tsbEdit.Size = new System.Drawing.Size(29, 29);
  108. this.tsbEdit.Text = "修改";
  109. this.tsbEdit.Visible = false;
  110. //
  111. // tsbDelete
  112. //
  113. this.tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  114. this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
  115. this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
  116. this.tsbDelete.Name = "tsbDelete";
  117. this.tsbDelete.Size = new System.Drawing.Size(29, 29);
  118. this.tsbDelete.Text = "刪除";
  119. this.tsbDelete.Visible = false;
  120. //
  121. // tsbSave
  122. //
  123. this.tsbSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  124. this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
  125. this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
  126. this.tsbSave.Name = "tsbSave";
  127. this.tsbSave.Size = new System.Drawing.Size(29, 29);
  128. this.tsbSave.Text = "儲存";
  129. this.tsbSave.Visible = false;
  130. //
  131. // tsbOK
  132. //
  133. this.tsbOK.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  134. this.tsbOK.Image = ((System.Drawing.Image)(resources.GetObject("tsbOK.Image")));
  135. this.tsbOK.ImageTransparentColor = System.Drawing.Color.Magenta;
  136. this.tsbOK.Name = "tsbOK";
  137. this.tsbOK.Size = new System.Drawing.Size(29, 29);
  138. this.tsbOK.Text = "確認";
  139. this.tsbOK.Visible = false;
  140. this.tsbOK.Click += new System.EventHandler(this.tsbOK_Click);
  141. //
  142. // tsbCancel
  143. //
  144. this.tsbCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  145. this.tsbCancel.Image = ((System.Drawing.Image)(resources.GetObject("tsbCancel.Image")));
  146. this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
  147. this.tsbCancel.Name = "tsbCancel";
  148. this.tsbCancel.Size = new System.Drawing.Size(29, 29);
  149. this.tsbCancel.Text = "取消";
  150. this.tsbCancel.Visible = false;
  151. this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
  152. //
  153. // tsbClean
  154. //
  155. this.tsbClean.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  156. this.tsbClean.Image = ((System.Drawing.Image)(resources.GetObject("tsbClean.Image")));
  157. this.tsbClean.ImageTransparentColor = System.Drawing.Color.Magenta;
  158. this.tsbClean.Name = "tsbClean";
  159. this.tsbClean.Size = new System.Drawing.Size(29, 29);
  160. this.tsbClean.Text = "清除";
  161. this.tsbClean.Click += new System.EventHandler(this.tsbClean_Click);
  162. //
  163. // tsbExit
  164. //
  165. this.tsbExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  166. this.tsbExit.Image = ((System.Drawing.Image)(resources.GetObject("tsbExit.Image")));
  167. this.tsbExit.ImageTransparentColor = System.Drawing.Color.Magenta;
  168. this.tsbExit.Name = "tsbExit";
  169. this.tsbExit.Size = new System.Drawing.Size(29, 29);
  170. this.tsbExit.Text = "離開";
  171. this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
  172. //
  173. // label1
  174. //
  175. this.label1.AutoSize = true;
  176. this.label1.Location = new System.Drawing.Point(12, 37);
  177. this.label1.Name = "label1";
  178. this.label1.Size = new System.Drawing.Size(89, 20);
  179. this.label1.TabIndex = 7;
  180. this.label1.Text = "科目代碼:";
  181. //
  182. // txtAccountingSubID
  183. //
  184. this.txtAccountingSubID.Location = new System.Drawing.Point(107, 34);
  185. this.txtAccountingSubID.Name = "txtAccountingSubID";
  186. this.txtAccountingSubID.Size = new System.Drawing.Size(139, 29);
  187. this.txtAccountingSubID.TabIndex = 1;
  188. this.txtAccountingSubID.Leave += new System.EventHandler(this.txtAccountingSubID_Leave);
  189. //
  190. // btnGetSubAccID
  191. //
  192. this.btnGetSubAccID.Location = new System.Drawing.Point(440, 34);
  193. this.btnGetSubAccID.Name = "btnGetSubAccID";
  194. this.btnGetSubAccID.Size = new System.Drawing.Size(37, 29);
  195. this.btnGetSubAccID.TabIndex = 9;
  196. this.btnGetSubAccID.Text = "...";
  197. this.btnGetSubAccID.UseVisualStyleBackColor = true;
  198. this.btnGetSubAccID.Click += new System.EventHandler(this.btnGetSubAccID_Click);
  199. //
  200. // label2
  201. //
  202. this.label2.AutoSize = true;
  203. this.label2.Location = new System.Drawing.Point(771, 41);
  204. this.label2.Name = "label2";
  205. this.label2.Size = new System.Drawing.Size(89, 20);
  206. this.label2.TabIndex = 7;
  207. this.label2.Text = "日期區間:";
  208. //
  209. // dpAccEnd
  210. //
  211. this.dpAccEnd.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  212. this.dpAccEnd.Location = new System.Drawing.Point(1028, 34);
  213. this.dpAccEnd.Name = "dpAccEnd";
  214. this.dpAccEnd.Size = new System.Drawing.Size(137, 29);
  215. this.dpAccEnd.TabIndex = 4;
  216. //
  217. // dpAccStart
  218. //
  219. this.dpAccStart.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  220. this.dpAccStart.Location = new System.Drawing.Point(854, 34);
  221. this.dpAccStart.Name = "dpAccStart";
  222. this.dpAccStart.Size = new System.Drawing.Size(137, 29);
  223. this.dpAccStart.TabIndex = 3;
  224. //
  225. // label5
  226. //
  227. this.label5.AutoSize = true;
  228. this.label5.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  229. this.label5.Location = new System.Drawing.Point(999, 35);
  230. this.label5.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  231. this.label5.Name = "label5";
  232. this.label5.Size = new System.Drawing.Size(21, 20);
  233. this.label5.TabIndex = 11;
  234. this.label5.Text = "~";
  235. //
  236. // dgvAccountingLedger
  237. //
  238. this.dgvAccountingLedger.AllowUserToAddRows = false;
  239. this.dgvAccountingLedger.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  240. | System.Windows.Forms.AnchorStyles.Left)
  241. | System.Windows.Forms.AnchorStyles.Right)));
  242. this.dgvAccountingLedger.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  243. this.dgvAccountingLedger.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  244. this.cAccountingID,
  245. this.cAccountingDate,
  246. this.cMemo,
  247. this.cDebit,
  248. this.cCredit,
  249. this.cBalance});
  250. this.dgvAccountingLedger.Location = new System.Drawing.Point(12, 101);
  251. this.dgvAccountingLedger.Name = "dgvAccountingLedger";
  252. this.dgvAccountingLedger.RowTemplate.Height = 24;
  253. this.dgvAccountingLedger.Size = new System.Drawing.Size(1195, 322);
  254. this.dgvAccountingLedger.TabIndex = 5;
  255. //
  256. // cAccountingID
  257. //
  258. this.cAccountingID.HeaderText = "傳票編號";
  259. this.cAccountingID.Name = "cAccountingID";
  260. this.cAccountingID.Width = 150;
  261. //
  262. // cAccountingDate
  263. //
  264. this.cAccountingDate.HeaderText = "傳票日期";
  265. this.cAccountingDate.Name = "cAccountingDate";
  266. this.cAccountingDate.Width = 200;
  267. //
  268. // cMemo
  269. //
  270. this.cMemo.HeaderText = "備註";
  271. this.cMemo.Name = "cMemo";
  272. this.cMemo.Width = 300;
  273. //
  274. // cDebit
  275. //
  276. this.cDebit.HeaderText = "借方金額";
  277. this.cDebit.Name = "cDebit";
  278. this.cDebit.Width = 200;
  279. //
  280. // cCredit
  281. //
  282. this.cCredit.HeaderText = "貸方金額";
  283. this.cCredit.Name = "cCredit";
  284. this.cCredit.Width = 200;
  285. //
  286. // cBalance
  287. //
  288. this.cBalance.HeaderText = "餘額";
  289. this.cBalance.Name = "cBalance";
  290. this.cBalance.Width = 200;
  291. //
  292. // txtAccountingSubName
  293. //
  294. this.txtAccountingSubName.Location = new System.Drawing.Point(252, 34);
  295. this.txtAccountingSubName.Name = "txtAccountingSubName";
  296. this.txtAccountingSubName.Size = new System.Drawing.Size(182, 29);
  297. this.txtAccountingSubName.TabIndex = 2;
  298. this.txtAccountingSubName.Leave += new System.EventHandler(this.txtAccountingSubName_Leave);
  299. //
  300. // cbAccountingYear
  301. //
  302. this.cbAccountingYear.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  303. this.cbAccountingYear.FormattingEnabled = true;
  304. this.cbAccountingYear.Location = new System.Drawing.Point(605, 34);
  305. this.cbAccountingYear.Margin = new System.Windows.Forms.Padding(5);
  306. this.cbAccountingYear.Name = "cbAccountingYear";
  307. this.cbAccountingYear.Size = new System.Drawing.Size(103, 28);
  308. this.cbAccountingYear.TabIndex = 12;
  309. this.cbAccountingYear.SelectedIndexChanged += new System.EventHandler(this.cbAccountingYear_SelectedIndexChanged);
  310. //
  311. // label3
  312. //
  313. this.label3.AutoSize = true;
  314. this.label3.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  315. this.label3.Location = new System.Drawing.Point(519, 37);
  316. this.label3.Margin = new System.Windows.Forms.Padding(5, 0, 5, 0);
  317. this.label3.Name = "label3";
  318. this.label3.Size = new System.Drawing.Size(89, 20);
  319. this.label3.TabIndex = 13;
  320. this.label3.Text = "會計年度:";
  321. //
  322. // lbAccountingName
  323. //
  324. this.lbAccountingName.AutoSize = true;
  325. this.lbAccountingName.Font = new System.Drawing.Font("微軟正黑體", 20.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  326. this.lbAccountingName.Location = new System.Drawing.Point(16, 64);
  327. this.lbAccountingName.Name = "lbAccountingName";
  328. this.lbAccountingName.Size = new System.Drawing.Size(0, 34);
  329. this.lbAccountingName.TabIndex = 14;
  330. //
  331. // AccountingLedger
  332. //
  333. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
  334. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  335. this.ClientSize = new System.Drawing.Size(1219, 435);
  336. this.Controls.Add(this.lbAccountingName);
  337. this.Controls.Add(this.cbAccountingYear);
  338. this.Controls.Add(this.label3);
  339. this.Controls.Add(this.dgvAccountingLedger);
  340. this.Controls.Add(this.dpAccEnd);
  341. this.Controls.Add(this.dpAccStart);
  342. this.Controls.Add(this.label5);
  343. this.Controls.Add(this.btnGetSubAccID);
  344. this.Controls.Add(this.txtAccountingSubName);
  345. this.Controls.Add(this.txtAccountingSubID);
  346. this.Controls.Add(this.label2);
  347. this.Controls.Add(this.label1);
  348. this.Controls.Add(this.tsButtons);
  349. this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  350. this.Margin = new System.Windows.Forms.Padding(5);
  351. this.Name = "AccountingLedger";
  352. this.Text = "會計分類帳";
  353. this.Load += new System.EventHandler(this.AccountingLedger_Load);
  354. this.tsButtons.ResumeLayout(false);
  355. this.tsButtons.PerformLayout();
  356. ((System.ComponentModel.ISupportInitialize)(this.dgvAccountingLedger)).EndInit();
  357. this.ResumeLayout(false);
  358. this.PerformLayout();
  359. }
  360. #endregion
  361. private System.Windows.Forms.ToolStrip tsButtons;
  362. private System.Windows.Forms.ToolStripButton tsbSearch;
  363. private System.Windows.Forms.ToolStripButton tsbAdd;
  364. private System.Windows.Forms.ToolStripButton tsbEdit;
  365. private System.Windows.Forms.ToolStripButton tsbDelete;
  366. private System.Windows.Forms.ToolStripButton tsbSave;
  367. private System.Windows.Forms.ToolStripButton tsbOK;
  368. private System.Windows.Forms.ToolStripButton tsbCancel;
  369. private System.Windows.Forms.ToolStripButton tsbClean;
  370. private System.Windows.Forms.ToolStripButton tsbExit;
  371. private System.Windows.Forms.Label label1;
  372. private System.Windows.Forms.TextBox txtAccountingSubID;
  373. private System.Windows.Forms.Button btnGetSubAccID;
  374. private System.Windows.Forms.Label label2;
  375. private System.Windows.Forms.DateTimePicker dpAccEnd;
  376. private System.Windows.Forms.DateTimePicker dpAccStart;
  377. private System.Windows.Forms.Label label5;
  378. private System.Windows.Forms.DataGridView dgvAccountingLedger;
  379. private System.Windows.Forms.TextBox txtAccountingSubName;
  380. private System.Windows.Forms.ComboBox cbAccountingYear;
  381. private System.Windows.Forms.Label label3;
  382. private System.Windows.Forms.DataGridViewTextBoxColumn cAccountingID;
  383. private System.Windows.Forms.DataGridViewTextBoxColumn cAccountingDate;
  384. private System.Windows.Forms.DataGridViewTextBoxColumn cMemo;
  385. private System.Windows.Forms.DataGridViewTextBoxColumn cDebit;
  386. private System.Windows.Forms.DataGridViewTextBoxColumn cCredit;
  387. private System.Windows.Forms.DataGridViewTextBoxColumn cBalance;
  388. private System.Windows.Forms.Label lbAccountingName;
  389. }
  390. }