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.

473 lines
23 KiB

  1. namespace ManagementSystem
  2. {
  3. partial class AccountsReceivable
  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(AccountsReceivable));
  29. System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
  30. this.dgvARManagement = new System.Windows.Forms.DataGridView();
  31. this.tsButtons = new System.Windows.Forms.ToolStrip();
  32. this.tsbSearch = new System.Windows.Forms.ToolStripButton();
  33. this.tsbAdd = new System.Windows.Forms.ToolStripButton();
  34. this.tsbEdit = new System.Windows.Forms.ToolStripButton();
  35. this.tsbDelete = new System.Windows.Forms.ToolStripButton();
  36. this.tsbSave = new System.Windows.Forms.ToolStripButton();
  37. this.tsbOK = new System.Windows.Forms.ToolStripButton();
  38. this.tsbCancel = new System.Windows.Forms.ToolStripButton();
  39. this.tsbClean = new System.Windows.Forms.ToolStripButton();
  40. this.tsbExit = new System.Windows.Forms.ToolStripButton();
  41. this.tsbSetup = new System.Windows.Forms.ToolStripButton();
  42. this.label1 = new System.Windows.Forms.Label();
  43. this.txtCustomerName = new System.Windows.Forms.TextBox();
  44. this.label2 = new System.Windows.Forms.Label();
  45. this.txtReceiptNo = new System.Windows.Forms.TextBox();
  46. this.label3 = new System.Windows.Forms.Label();
  47. this.txtReceiptDateStart = new System.Windows.Forms.TextBox();
  48. this.label4 = new System.Windows.Forms.Label();
  49. this.txtReceiptDateEnd = new System.Windows.Forms.TextBox();
  50. this.cbHistory = new System.Windows.Forms.CheckBox();
  51. this.label5 = new System.Windows.Forms.Label();
  52. this.txtProjectName = new System.Windows.Forms.TextBox();
  53. this.cCheck = new System.Windows.Forms.DataGridViewButtonColumn();
  54. this.cSalesOrderNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  55. this.cProjectName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  56. this.cProjectNumber = new System.Windows.Forms.DataGridViewTextBoxColumn();
  57. this.cCustomerID = new System.Windows.Forms.DataGridViewTextBoxColumn();
  58. this.cCustomerName = new System.Windows.Forms.DataGridViewTextBoxColumn();
  59. this.cReceiptNo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  60. this.cActualReceiptDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  61. this.cActualReceiptedDate = new System.Windows.Forms.DataGridViewTextBoxColumn();
  62. this.cReceiptAmount = new System.Windows.Forms.DataGridViewTextBoxColumn();
  63. this.cMemo = new System.Windows.Forms.DataGridViewTextBoxColumn();
  64. this.cReceiveStatus = new System.Windows.Forms.DataGridViewTextBoxColumn();
  65. ((System.ComponentModel.ISupportInitialize)(this.dgvARManagement)).BeginInit();
  66. this.tsButtons.SuspendLayout();
  67. this.SuspendLayout();
  68. //
  69. // dgvARManagement
  70. //
  71. this.dgvARManagement.AllowUserToAddRows = false;
  72. this.dgvARManagement.AllowUserToDeleteRows = false;
  73. this.dgvARManagement.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  74. | System.Windows.Forms.AnchorStyles.Left)
  75. | System.Windows.Forms.AnchorStyles.Right)));
  76. this.dgvARManagement.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
  77. this.dgvARManagement.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
  78. this.cCheck,
  79. this.cSalesOrderNo,
  80. this.cProjectName,
  81. this.cProjectNumber,
  82. this.cCustomerID,
  83. this.cCustomerName,
  84. this.cReceiptNo,
  85. this.cActualReceiptDate,
  86. this.cActualReceiptedDate,
  87. this.cReceiptAmount,
  88. this.cMemo,
  89. this.cReceiveStatus});
  90. this.dgvARManagement.EditMode = System.Windows.Forms.DataGridViewEditMode.EditOnEnter;
  91. this.dgvARManagement.Location = new System.Drawing.Point(12, 82);
  92. this.dgvARManagement.Name = "dgvARManagement";
  93. this.dgvARManagement.RowTemplate.Height = 24;
  94. this.dgvARManagement.Size = new System.Drawing.Size(1533, 462);
  95. this.dgvARManagement.TabIndex = 0;
  96. this.dgvARManagement.CellContentClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvARManagement_CellContentClick);
  97. this.dgvARManagement.RowValidated += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvARManagement_RowValidated);
  98. this.dgvARManagement.RowValidating += new System.Windows.Forms.DataGridViewCellCancelEventHandler(this.dgvARManagement_RowValidating);
  99. //
  100. // tsButtons
  101. //
  102. this.tsButtons.ImageScalingSize = new System.Drawing.Size(25, 25);
  103. this.tsButtons.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
  104. this.tsbSearch,
  105. this.tsbAdd,
  106. this.tsbEdit,
  107. this.tsbDelete,
  108. this.tsbSave,
  109. this.tsbOK,
  110. this.tsbCancel,
  111. this.tsbClean,
  112. this.tsbExit,
  113. this.tsbSetup});
  114. this.tsButtons.Location = new System.Drawing.Point(0, 0);
  115. this.tsButtons.Name = "tsButtons";
  116. this.tsButtons.Padding = new System.Windows.Forms.Padding(0, 0, 2, 0);
  117. this.tsButtons.Size = new System.Drawing.Size(1557, 32);
  118. this.tsButtons.TabIndex = 10;
  119. this.tsButtons.Text = "功能按鈕表";
  120. //
  121. // tsbSearch
  122. //
  123. this.tsbSearch.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  124. this.tsbSearch.Image = ((System.Drawing.Image)(resources.GetObject("tsbSearch.Image")));
  125. this.tsbSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
  126. this.tsbSearch.Name = "tsbSearch";
  127. this.tsbSearch.Size = new System.Drawing.Size(29, 29);
  128. this.tsbSearch.Text = "搜尋";
  129. this.tsbSearch.Click += new System.EventHandler(this.tsbSearch_Click);
  130. //
  131. // tsbAdd
  132. //
  133. this.tsbAdd.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  134. this.tsbAdd.Image = ((System.Drawing.Image)(resources.GetObject("tsbAdd.Image")));
  135. this.tsbAdd.ImageTransparentColor = System.Drawing.Color.Magenta;
  136. this.tsbAdd.Name = "tsbAdd";
  137. this.tsbAdd.Size = new System.Drawing.Size(29, 29);
  138. this.tsbAdd.Text = "新增";
  139. this.tsbAdd.Visible = false;
  140. //
  141. // tsbEdit
  142. //
  143. this.tsbEdit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  144. this.tsbEdit.Image = ((System.Drawing.Image)(resources.GetObject("tsbEdit.Image")));
  145. this.tsbEdit.ImageTransparentColor = System.Drawing.Color.Magenta;
  146. this.tsbEdit.Name = "tsbEdit";
  147. this.tsbEdit.Size = new System.Drawing.Size(29, 29);
  148. this.tsbEdit.Text = "修改";
  149. this.tsbEdit.Visible = false;
  150. //
  151. // tsbDelete
  152. //
  153. this.tsbDelete.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  154. this.tsbDelete.Image = ((System.Drawing.Image)(resources.GetObject("tsbDelete.Image")));
  155. this.tsbDelete.ImageTransparentColor = System.Drawing.Color.Magenta;
  156. this.tsbDelete.Name = "tsbDelete";
  157. this.tsbDelete.Size = new System.Drawing.Size(29, 29);
  158. this.tsbDelete.Text = "刪除";
  159. this.tsbDelete.Visible = false;
  160. //
  161. // tsbSave
  162. //
  163. this.tsbSave.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  164. this.tsbSave.Image = ((System.Drawing.Image)(resources.GetObject("tsbSave.Image")));
  165. this.tsbSave.ImageTransparentColor = System.Drawing.Color.Magenta;
  166. this.tsbSave.Name = "tsbSave";
  167. this.tsbSave.Size = new System.Drawing.Size(29, 29);
  168. this.tsbSave.Text = "儲存";
  169. this.tsbSave.Visible = false;
  170. //
  171. // tsbOK
  172. //
  173. this.tsbOK.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  174. this.tsbOK.Image = ((System.Drawing.Image)(resources.GetObject("tsbOK.Image")));
  175. this.tsbOK.ImageTransparentColor = System.Drawing.Color.Magenta;
  176. this.tsbOK.Name = "tsbOK";
  177. this.tsbOK.Size = new System.Drawing.Size(29, 29);
  178. this.tsbOK.Text = "確認";
  179. this.tsbOK.Visible = false;
  180. this.tsbOK.Click += new System.EventHandler(this.tsbOK_Click);
  181. //
  182. // tsbCancel
  183. //
  184. this.tsbCancel.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  185. this.tsbCancel.Image = ((System.Drawing.Image)(resources.GetObject("tsbCancel.Image")));
  186. this.tsbCancel.ImageTransparentColor = System.Drawing.Color.Magenta;
  187. this.tsbCancel.Name = "tsbCancel";
  188. this.tsbCancel.Size = new System.Drawing.Size(29, 29);
  189. this.tsbCancel.Text = "取消";
  190. this.tsbCancel.Visible = false;
  191. this.tsbCancel.Click += new System.EventHandler(this.tsbCancel_Click);
  192. //
  193. // tsbClean
  194. //
  195. this.tsbClean.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  196. this.tsbClean.Image = ((System.Drawing.Image)(resources.GetObject("tsbClean.Image")));
  197. this.tsbClean.ImageTransparentColor = System.Drawing.Color.Magenta;
  198. this.tsbClean.Name = "tsbClean";
  199. this.tsbClean.Size = new System.Drawing.Size(29, 29);
  200. this.tsbClean.Text = "清除";
  201. this.tsbClean.Click += new System.EventHandler(this.tsbClean_Click);
  202. //
  203. // tsbExit
  204. //
  205. this.tsbExit.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  206. this.tsbExit.Image = ((System.Drawing.Image)(resources.GetObject("tsbExit.Image")));
  207. this.tsbExit.ImageTransparentColor = System.Drawing.Color.Magenta;
  208. this.tsbExit.Name = "tsbExit";
  209. this.tsbExit.Size = new System.Drawing.Size(29, 29);
  210. this.tsbExit.Text = "離開";
  211. this.tsbExit.Click += new System.EventHandler(this.tsbExit_Click);
  212. //
  213. // tsbSetup
  214. //
  215. this.tsbSetup.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
  216. this.tsbSetup.Image = ((System.Drawing.Image)(resources.GetObject("tsbSetup.Image")));
  217. this.tsbSetup.ImageTransparentColor = System.Drawing.Color.Magenta;
  218. this.tsbSetup.Name = "tsbSetup";
  219. this.tsbSetup.Size = new System.Drawing.Size(29, 29);
  220. this.tsbSetup.Text = "分錄設定";
  221. this.tsbSetup.Click += new System.EventHandler(this.tsbSetup_Click);
  222. //
  223. // label1
  224. //
  225. this.label1.AutoSize = true;
  226. this.label1.Location = new System.Drawing.Point(12, 45);
  227. this.label1.Name = "label1";
  228. this.label1.Size = new System.Drawing.Size(89, 20);
  229. this.label1.TabIndex = 11;
  230. this.label1.Text = "客戶名稱:";
  231. //
  232. // txtCustomerName
  233. //
  234. this.txtCustomerName.Location = new System.Drawing.Point(107, 42);
  235. this.txtCustomerName.Name = "txtCustomerName";
  236. this.txtCustomerName.Size = new System.Drawing.Size(187, 29);
  237. this.txtCustomerName.TabIndex = 12;
  238. //
  239. // label2
  240. //
  241. this.label2.AutoSize = true;
  242. this.label2.Location = new System.Drawing.Point(623, 45);
  243. this.label2.Name = "label2";
  244. this.label2.Size = new System.Drawing.Size(89, 20);
  245. this.label2.TabIndex = 11;
  246. this.label2.Text = "發票編號:";
  247. //
  248. // txtReceiptNo
  249. //
  250. this.txtReceiptNo.Location = new System.Drawing.Point(718, 42);
  251. this.txtReceiptNo.Name = "txtReceiptNo";
  252. this.txtReceiptNo.Size = new System.Drawing.Size(147, 29);
  253. this.txtReceiptNo.TabIndex = 12;
  254. //
  255. // label3
  256. //
  257. this.label3.AutoSize = true;
  258. this.label3.Location = new System.Drawing.Point(895, 45);
  259. this.label3.Name = "label3";
  260. this.label3.Size = new System.Drawing.Size(89, 20);
  261. this.label3.TabIndex = 11;
  262. this.label3.Text = "請款日期:";
  263. //
  264. // txtReceiptDateStart
  265. //
  266. this.txtReceiptDateStart.Location = new System.Drawing.Point(990, 42);
  267. this.txtReceiptDateStart.Name = "txtReceiptDateStart";
  268. this.txtReceiptDateStart.Size = new System.Drawing.Size(131, 29);
  269. this.txtReceiptDateStart.TabIndex = 12;
  270. //
  271. // label4
  272. //
  273. this.label4.AutoSize = true;
  274. this.label4.Location = new System.Drawing.Point(1127, 45);
  275. this.label4.Name = "label4";
  276. this.label4.Size = new System.Drawing.Size(21, 20);
  277. this.label4.TabIndex = 11;
  278. this.label4.Text = "~";
  279. //
  280. // txtReceiptDateEnd
  281. //
  282. this.txtReceiptDateEnd.Location = new System.Drawing.Point(1154, 42);
  283. this.txtReceiptDateEnd.Name = "txtReceiptDateEnd";
  284. this.txtReceiptDateEnd.Size = new System.Drawing.Size(131, 29);
  285. this.txtReceiptDateEnd.TabIndex = 12;
  286. //
  287. // cbHistory
  288. //
  289. this.cbHistory.AutoSize = true;
  290. this.cbHistory.Location = new System.Drawing.Point(1314, 44);
  291. this.cbHistory.Name = "cbHistory";
  292. this.cbHistory.Size = new System.Drawing.Size(156, 24);
  293. this.cbHistory.TabIndex = 13;
  294. this.cbHistory.Text = "只顯示已請款資料";
  295. this.cbHistory.UseVisualStyleBackColor = true;
  296. //
  297. // label5
  298. //
  299. this.label5.AutoSize = true;
  300. this.label5.Location = new System.Drawing.Point(315, 45);
  301. this.label5.Name = "label5";
  302. this.label5.Size = new System.Drawing.Size(89, 20);
  303. this.label5.TabIndex = 11;
  304. this.label5.Text = "專案名稱:";
  305. //
  306. // txtProjectName
  307. //
  308. this.txtProjectName.Location = new System.Drawing.Point(410, 42);
  309. this.txtProjectName.Name = "txtProjectName";
  310. this.txtProjectName.Size = new System.Drawing.Size(187, 29);
  311. this.txtProjectName.TabIndex = 12;
  312. //
  313. // cCheck
  314. //
  315. this.cCheck.HeaderText = "核銷";
  316. this.cCheck.Name = "cCheck";
  317. this.cCheck.Text = "...";
  318. this.cCheck.Width = 65;
  319. //
  320. // cSalesOrderNo
  321. //
  322. this.cSalesOrderNo.HeaderText = "訂單編號";
  323. this.cSalesOrderNo.Name = "cSalesOrderNo";
  324. this.cSalesOrderNo.ReadOnly = true;
  325. this.cSalesOrderNo.Width = 150;
  326. //
  327. // cProjectName
  328. //
  329. this.cProjectName.HeaderText = "專案名稱";
  330. this.cProjectName.Name = "cProjectName";
  331. this.cProjectName.ReadOnly = true;
  332. this.cProjectName.Width = 300;
  333. //
  334. // cProjectNumber
  335. //
  336. this.cProjectNumber.HeaderText = "專案編號";
  337. this.cProjectNumber.Name = "cProjectNumber";
  338. //
  339. // cCustomerID
  340. //
  341. this.cCustomerID.DataPropertyName = "CustomerID";
  342. this.cCustomerID.HeaderText = "客戶編號";
  343. this.cCustomerID.Name = "cCustomerID";
  344. this.cCustomerID.ReadOnly = true;
  345. this.cCustomerID.Visible = false;
  346. //
  347. // cCustomerName
  348. //
  349. this.cCustomerName.DataPropertyName = "CustomerName";
  350. this.cCustomerName.HeaderText = "客戶名稱";
  351. this.cCustomerName.Name = "cCustomerName";
  352. this.cCustomerName.ReadOnly = true;
  353. this.cCustomerName.Width = 200;
  354. //
  355. // cReceiptNo
  356. //
  357. this.cReceiptNo.DataPropertyName = "ReceiptNo";
  358. this.cReceiptNo.HeaderText = "發票號碼";
  359. this.cReceiptNo.Name = "cReceiptNo";
  360. this.cReceiptNo.ReadOnly = true;
  361. this.cReceiptNo.Width = 150;
  362. //
  363. // cActualReceiptDate
  364. //
  365. this.cActualReceiptDate.DataPropertyName = "ActualReceiptDate";
  366. this.cActualReceiptDate.HeaderText = "請款日期";
  367. this.cActualReceiptDate.Name = "cActualReceiptDate";
  368. this.cActualReceiptDate.ReadOnly = true;
  369. this.cActualReceiptDate.Width = 150;
  370. //
  371. // cActualReceiptedDate
  372. //
  373. this.cActualReceiptedDate.DataPropertyName = "ActualReceiptedDate";
  374. this.cActualReceiptedDate.HeaderText = "入帳日期";
  375. this.cActualReceiptedDate.Name = "cActualReceiptedDate";
  376. this.cActualReceiptedDate.Width = 150;
  377. //
  378. // cReceiptAmount
  379. //
  380. this.cReceiptAmount.DataPropertyName = "ReceiptAmount";
  381. dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleRight;
  382. this.cReceiptAmount.DefaultCellStyle = dataGridViewCellStyle1;
  383. this.cReceiptAmount.HeaderText = "請款金額";
  384. this.cReceiptAmount.Name = "cReceiptAmount";
  385. this.cReceiptAmount.ReadOnly = true;
  386. this.cReceiptAmount.Width = 150;
  387. //
  388. // cMemo
  389. //
  390. this.cMemo.DataPropertyName = "Memo";
  391. this.cMemo.HeaderText = "備註";
  392. this.cMemo.Name = "cMemo";
  393. this.cMemo.Width = 250;
  394. //
  395. // cReceiveStatus
  396. //
  397. this.cReceiveStatus.DataPropertyName = "ReceiveStatus";
  398. this.cReceiveStatus.HeaderText = "已請款";
  399. this.cReceiveStatus.Name = "cReceiveStatus";
  400. this.cReceiveStatus.Visible = false;
  401. //
  402. // AccountsReceivable
  403. //
  404. this.AutoScaleDimensions = new System.Drawing.SizeF(10F, 20F);
  405. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  406. this.ClientSize = new System.Drawing.Size(1557, 556);
  407. this.Controls.Add(this.cbHistory);
  408. this.Controls.Add(this.txtReceiptDateEnd);
  409. this.Controls.Add(this.txtReceiptDateStart);
  410. this.Controls.Add(this.label4);
  411. this.Controls.Add(this.label3);
  412. this.Controls.Add(this.txtReceiptNo);
  413. this.Controls.Add(this.label2);
  414. this.Controls.Add(this.txtProjectName);
  415. this.Controls.Add(this.txtCustomerName);
  416. this.Controls.Add(this.label5);
  417. this.Controls.Add(this.label1);
  418. this.Controls.Add(this.tsButtons);
  419. this.Controls.Add(this.dgvARManagement);
  420. this.Font = new System.Drawing.Font("微軟正黑體", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(136)));
  421. this.Margin = new System.Windows.Forms.Padding(5);
  422. this.Name = "AccountsReceivable";
  423. this.Text = "應收帳款管理";
  424. this.Load += new System.EventHandler(this.AccountsReceivable_Load);
  425. ((System.ComponentModel.ISupportInitialize)(this.dgvARManagement)).EndInit();
  426. this.tsButtons.ResumeLayout(false);
  427. this.tsButtons.PerformLayout();
  428. this.ResumeLayout(false);
  429. this.PerformLayout();
  430. }
  431. #endregion
  432. private System.Windows.Forms.ToolStrip tsButtons;
  433. private System.Windows.Forms.ToolStripButton tsbSearch;
  434. private System.Windows.Forms.ToolStripButton tsbAdd;
  435. private System.Windows.Forms.ToolStripButton tsbEdit;
  436. private System.Windows.Forms.ToolStripButton tsbDelete;
  437. private System.Windows.Forms.ToolStripButton tsbSave;
  438. private System.Windows.Forms.ToolStripButton tsbOK;
  439. private System.Windows.Forms.ToolStripButton tsbCancel;
  440. private System.Windows.Forms.ToolStripButton tsbClean;
  441. private System.Windows.Forms.ToolStripButton tsbExit;
  442. private System.Windows.Forms.ToolStripButton tsbSetup;
  443. private System.Windows.Forms.Label label1;
  444. private System.Windows.Forms.TextBox txtCustomerName;
  445. private System.Windows.Forms.Label label2;
  446. private System.Windows.Forms.TextBox txtReceiptNo;
  447. private System.Windows.Forms.Label label3;
  448. private System.Windows.Forms.TextBox txtReceiptDateStart;
  449. private System.Windows.Forms.Label label4;
  450. private System.Windows.Forms.TextBox txtReceiptDateEnd;
  451. private System.Windows.Forms.CheckBox cbHistory;
  452. public System.Windows.Forms.DataGridView dgvARManagement;
  453. private System.Windows.Forms.Label label5;
  454. private System.Windows.Forms.TextBox txtProjectName;
  455. private System.Windows.Forms.DataGridViewButtonColumn cCheck;
  456. private System.Windows.Forms.DataGridViewTextBoxColumn cSalesOrderNo;
  457. private System.Windows.Forms.DataGridViewTextBoxColumn cProjectName;
  458. private System.Windows.Forms.DataGridViewTextBoxColumn cProjectNumber;
  459. private System.Windows.Forms.DataGridViewTextBoxColumn cCustomerID;
  460. private System.Windows.Forms.DataGridViewTextBoxColumn cCustomerName;
  461. private System.Windows.Forms.DataGridViewTextBoxColumn cReceiptNo;
  462. private System.Windows.Forms.DataGridViewTextBoxColumn cActualReceiptDate;
  463. private System.Windows.Forms.DataGridViewTextBoxColumn cActualReceiptedDate;
  464. private System.Windows.Forms.DataGridViewTextBoxColumn cReceiptAmount;
  465. private System.Windows.Forms.DataGridViewTextBoxColumn cMemo;
  466. private System.Windows.Forms.DataGridViewTextBoxColumn cReceiveStatus;
  467. }
  468. }