Geen omschrijving

OrderForm.Designer.cs 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346
  1. namespace BulkPrinting
  2. {
  3. partial class OrderForm
  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(OrderForm));
  29. this.lstProductCatalogue = new System.Windows.Forms.ListBox();
  30. this.numQuantity = new System.Windows.Forms.NumericUpDown();
  31. this.txtReference = new System.Windows.Forms.TextBox();
  32. this.btnPlaceOrder = new System.Windows.Forms.Button();
  33. this.btnCancel = new System.Windows.Forms.Button();
  34. this.label1 = new System.Windows.Forms.Label();
  35. this.label2 = new System.Windows.Forms.Label();
  36. this.btnAddProduct = new System.Windows.Forms.Button();
  37. this.lstSelectedProducts = new System.Windows.Forms.ListBox();
  38. this.label3 = new System.Windows.Forms.Label();
  39. this.lblTotalValue = new System.Windows.Forms.Label();
  40. this.label5 = new System.Windows.Forms.Label();
  41. this.lblTotalCost = new System.Windows.Forms.Label();
  42. this.label7 = new System.Windows.Forms.Label();
  43. this.lblRemainingBalance = new System.Windows.Forms.Label();
  44. this.btnRemoveProduct = new System.Windows.Forms.Button();
  45. this.lblRemainingAllowanceText = new System.Windows.Forms.Label();
  46. this.lblRemainingAllowance = new System.Windows.Forms.Label();
  47. this.label4 = new System.Windows.Forms.Label();
  48. this.label6 = new System.Windows.Forms.Label();
  49. ((System.ComponentModel.ISupportInitialize)(this.numQuantity)).BeginInit();
  50. this.SuspendLayout();
  51. //
  52. // lstProductCatalogue
  53. //
  54. this.lstProductCatalogue.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
  55. this.lstProductCatalogue.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(157)))), ((int)(((byte)(233)))));
  56. this.lstProductCatalogue.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  57. this.lstProductCatalogue.FormattingEnabled = true;
  58. this.lstProductCatalogue.Location = new System.Drawing.Point(12, 25);
  59. this.lstProductCatalogue.Name = "lstProductCatalogue";
  60. this.lstProductCatalogue.Size = new System.Drawing.Size(204, 223);
  61. this.lstProductCatalogue.TabIndex = 0;
  62. //
  63. // numQuantity
  64. //
  65. this.numQuantity.Location = new System.Drawing.Point(222, 128);
  66. this.numQuantity.Maximum = new decimal(new int[] {
  67. 1000000000,
  68. 0,
  69. 0,
  70. 0});
  71. this.numQuantity.Name = "numQuantity";
  72. this.numQuantity.Size = new System.Drawing.Size(86, 20);
  73. this.numQuantity.TabIndex = 2;
  74. //
  75. // txtReference
  76. //
  77. this.txtReference.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  78. this.txtReference.Location = new System.Drawing.Point(238, 293);
  79. this.txtReference.MaxLength = 20;
  80. this.txtReference.Name = "txtReference";
  81. this.txtReference.Size = new System.Drawing.Size(119, 20);
  82. this.txtReference.TabIndex = 3;
  83. //
  84. // btnPlaceOrder
  85. //
  86. this.btnPlaceOrder.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  87. this.btnPlaceOrder.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
  88. this.btnPlaceOrder.FlatAppearance.BorderColor = System.Drawing.Color.Black;
  89. this.btnPlaceOrder.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  90. this.btnPlaceOrder.Location = new System.Drawing.Point(444, 291);
  91. this.btnPlaceOrder.Name = "btnPlaceOrder";
  92. this.btnPlaceOrder.Size = new System.Drawing.Size(75, 23);
  93. this.btnPlaceOrder.TabIndex = 4;
  94. this.btnPlaceOrder.Text = "Place Order";
  95. this.btnPlaceOrder.UseVisualStyleBackColor = false;
  96. this.btnPlaceOrder.Click += new System.EventHandler(this.btnPlaceOrder_Click);
  97. //
  98. // btnCancel
  99. //
  100. this.btnCancel.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  101. this.btnCancel.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
  102. this.btnCancel.FlatAppearance.BorderColor = System.Drawing.Color.Black;
  103. this.btnCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  104. this.btnCancel.Location = new System.Drawing.Point(363, 291);
  105. this.btnCancel.Name = "btnCancel";
  106. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  107. this.btnCancel.TabIndex = 5;
  108. this.btnCancel.Text = "Cancel";
  109. this.btnCancel.UseVisualStyleBackColor = false;
  110. this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
  111. //
  112. // label1
  113. //
  114. this.label1.AutoSize = true;
  115. this.label1.ForeColor = System.Drawing.Color.White;
  116. this.label1.Location = new System.Drawing.Point(221, 112);
  117. this.label1.Name = "label1";
  118. this.label1.Size = new System.Drawing.Size(87, 13);
  119. this.label1.TabIndex = 6;
  120. this.label1.Text = "Quantity to Order";
  121. //
  122. // label2
  123. //
  124. this.label2.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  125. this.label2.AutoSize = true;
  126. this.label2.ForeColor = System.Drawing.Color.White;
  127. this.label2.Location = new System.Drawing.Point(175, 296);
  128. this.label2.Name = "label2";
  129. this.label2.Size = new System.Drawing.Size(57, 13);
  130. this.label2.TabIndex = 7;
  131. this.label2.Text = "Reference";
  132. //
  133. // btnAddProduct
  134. //
  135. this.btnAddProduct.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
  136. this.btnAddProduct.FlatAppearance.BorderColor = System.Drawing.Color.Black;
  137. this.btnAddProduct.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  138. this.btnAddProduct.Location = new System.Drawing.Point(222, 154);
  139. this.btnAddProduct.Name = "btnAddProduct";
  140. this.btnAddProduct.Size = new System.Drawing.Size(86, 23);
  141. this.btnAddProduct.TabIndex = 8;
  142. this.btnAddProduct.Text = "Add >>";
  143. this.btnAddProduct.UseVisualStyleBackColor = false;
  144. this.btnAddProduct.Click += new System.EventHandler(this.btnAddProduct_Click);
  145. //
  146. // lstSelectedProducts
  147. //
  148. this.lstSelectedProducts.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)));
  149. this.lstSelectedProducts.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(107)))), ((int)(((byte)(157)))), ((int)(((byte)(233)))));
  150. this.lstSelectedProducts.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
  151. this.lstSelectedProducts.FormattingEnabled = true;
  152. this.lstSelectedProducts.Location = new System.Drawing.Point(315, 25);
  153. this.lstSelectedProducts.Name = "lstSelectedProducts";
  154. this.lstSelectedProducts.Size = new System.Drawing.Size(204, 223);
  155. this.lstSelectedProducts.TabIndex = 0;
  156. //
  157. // label3
  158. //
  159. this.label3.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  160. this.label3.AutoSize = true;
  161. this.label3.ForeColor = System.Drawing.Color.White;
  162. this.label3.Location = new System.Drawing.Point(331, 253);
  163. this.label3.Name = "label3";
  164. this.label3.Size = new System.Drawing.Size(107, 13);
  165. this.label3.TabIndex = 9;
  166. this.label3.Text = "Total Voucher Value:";
  167. //
  168. // lblTotalValue
  169. //
  170. this.lblTotalValue.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  171. this.lblTotalValue.ForeColor = System.Drawing.Color.White;
  172. this.lblTotalValue.Location = new System.Drawing.Point(444, 253);
  173. this.lblTotalValue.Name = "lblTotalValue";
  174. this.lblTotalValue.Size = new System.Drawing.Size(71, 13);
  175. this.lblTotalValue.TabIndex = 9;
  176. this.lblTotalValue.Text = "R0";
  177. this.lblTotalValue.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  178. //
  179. // label5
  180. //
  181. this.label5.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  182. this.label5.AutoSize = true;
  183. this.label5.ForeColor = System.Drawing.Color.White;
  184. this.label5.Location = new System.Drawing.Point(351, 275);
  185. this.label5.Name = "label5";
  186. this.label5.Size = new System.Drawing.Size(87, 13);
  187. this.label5.TabIndex = 9;
  188. this.label5.Text = "Total Order Cost:";
  189. //
  190. // lblTotalCost
  191. //
  192. this.lblTotalCost.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  193. this.lblTotalCost.ForeColor = System.Drawing.Color.White;
  194. this.lblTotalCost.Location = new System.Drawing.Point(447, 275);
  195. this.lblTotalCost.Name = "lblTotalCost";
  196. this.lblTotalCost.Size = new System.Drawing.Size(68, 13);
  197. this.lblTotalCost.TabIndex = 9;
  198. this.lblTotalCost.Text = "R0";
  199. this.lblTotalCost.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  200. //
  201. // label7
  202. //
  203. this.label7.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  204. this.label7.AutoSize = true;
  205. this.label7.ForeColor = System.Drawing.Color.White;
  206. this.label7.Location = new System.Drawing.Point(13, 257);
  207. this.label7.Name = "label7";
  208. this.label7.Size = new System.Drawing.Size(145, 13);
  209. this.label7.TabIndex = 10;
  210. this.label7.Text = "Remaining Account Balance:";
  211. //
  212. // lblRemainingBalance
  213. //
  214. this.lblRemainingBalance.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  215. this.lblRemainingBalance.AutoSize = true;
  216. this.lblRemainingBalance.ForeColor = System.Drawing.Color.White;
  217. this.lblRemainingBalance.Location = new System.Drawing.Point(164, 257);
  218. this.lblRemainingBalance.Name = "lblRemainingBalance";
  219. this.lblRemainingBalance.Size = new System.Drawing.Size(21, 13);
  220. this.lblRemainingBalance.TabIndex = 11;
  221. this.lblRemainingBalance.Text = "R0";
  222. //
  223. // btnRemoveProduct
  224. //
  225. this.btnRemoveProduct.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(100)))), ((int)(((byte)(132)))), ((int)(((byte)(186)))));
  226. this.btnRemoveProduct.FlatAppearance.BorderColor = System.Drawing.Color.Black;
  227. this.btnRemoveProduct.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  228. this.btnRemoveProduct.Location = new System.Drawing.Point(222, 184);
  229. this.btnRemoveProduct.Name = "btnRemoveProduct";
  230. this.btnRemoveProduct.Size = new System.Drawing.Size(86, 23);
  231. this.btnRemoveProduct.TabIndex = 12;
  232. this.btnRemoveProduct.Text = "<< Remove";
  233. this.btnRemoveProduct.UseVisualStyleBackColor = false;
  234. this.btnRemoveProduct.Click += new System.EventHandler(this.btnRemoveProduct_Click);
  235. //
  236. // lblRemainingAllowanceText
  237. //
  238. this.lblRemainingAllowanceText.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  239. this.lblRemainingAllowanceText.AutoSize = true;
  240. this.lblRemainingAllowanceText.ForeColor = System.Drawing.Color.White;
  241. this.lblRemainingAllowanceText.Location = new System.Drawing.Point(13, 275);
  242. this.lblRemainingAllowanceText.Name = "lblRemainingAllowanceText";
  243. this.lblRemainingAllowanceText.Size = new System.Drawing.Size(138, 13);
  244. this.lblRemainingAllowanceText.TabIndex = 13;
  245. this.lblRemainingAllowanceText.Text = "Remaining Daily Allowance:";
  246. //
  247. // lblRemainingAllowance
  248. //
  249. this.lblRemainingAllowance.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
  250. this.lblRemainingAllowance.AutoSize = true;
  251. this.lblRemainingAllowance.ForeColor = System.Drawing.Color.White;
  252. this.lblRemainingAllowance.Location = new System.Drawing.Point(164, 275);
  253. this.lblRemainingAllowance.Name = "lblRemainingAllowance";
  254. this.lblRemainingAllowance.Size = new System.Drawing.Size(21, 13);
  255. this.lblRemainingAllowance.TabIndex = 11;
  256. this.lblRemainingAllowance.Text = "R0";
  257. //
  258. // label4
  259. //
  260. this.label4.AutoSize = true;
  261. this.label4.ForeColor = System.Drawing.Color.White;
  262. this.label4.Location = new System.Drawing.Point(9, 9);
  263. this.label4.Name = "label4";
  264. this.label4.Size = new System.Drawing.Size(95, 13);
  265. this.label4.TabIndex = 14;
  266. this.label4.Text = "Product Catalogue";
  267. //
  268. // label6
  269. //
  270. this.label6.AutoSize = true;
  271. this.label6.ForeColor = System.Drawing.Color.White;
  272. this.label6.Location = new System.Drawing.Point(312, 9);
  273. this.label6.Name = "label6";
  274. this.label6.Size = new System.Drawing.Size(117, 13);
  275. this.label6.TabIndex = 15;
  276. this.label6.Text = "Products to be Ordered";
  277. //
  278. // OrderForm
  279. //
  280. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  281. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  282. this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(7)))), ((int)(((byte)(63)))), ((int)(((byte)(145)))));
  283. this.ClientSize = new System.Drawing.Size(527, 324);
  284. this.Controls.Add(this.label6);
  285. this.Controls.Add(this.label4);
  286. this.Controls.Add(this.lblRemainingAllowanceText);
  287. this.Controls.Add(this.btnRemoveProduct);
  288. this.Controls.Add(this.lblRemainingAllowance);
  289. this.Controls.Add(this.lblRemainingBalance);
  290. this.Controls.Add(this.label7);
  291. this.Controls.Add(this.lblTotalCost);
  292. this.Controls.Add(this.label5);
  293. this.Controls.Add(this.lblTotalValue);
  294. this.Controls.Add(this.label3);
  295. this.Controls.Add(this.btnAddProduct);
  296. this.Controls.Add(this.label2);
  297. this.Controls.Add(this.label1);
  298. this.Controls.Add(this.btnCancel);
  299. this.Controls.Add(this.btnPlaceOrder);
  300. this.Controls.Add(this.txtReference);
  301. this.Controls.Add(this.numQuantity);
  302. this.Controls.Add(this.lstSelectedProducts);
  303. this.Controls.Add(this.lstProductCatalogue);
  304. this.ForeColor = System.Drawing.Color.White;
  305. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  306. this.MaximizeBox = false;
  307. this.MaximumSize = new System.Drawing.Size(543, 1000);
  308. this.MinimizeBox = false;
  309. this.MinimumSize = new System.Drawing.Size(543, 363);
  310. this.Name = "OrderForm";
  311. this.Text = "Order Vouchers";
  312. this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.OrderForm_FormClosing);
  313. this.Load += new System.EventHandler(this.OrderForm_Load);
  314. ((System.ComponentModel.ISupportInitialize)(this.numQuantity)).EndInit();
  315. this.ResumeLayout(false);
  316. this.PerformLayout();
  317. }
  318. #endregion
  319. private System.Windows.Forms.ListBox lstProductCatalogue;
  320. private System.Windows.Forms.NumericUpDown numQuantity;
  321. private System.Windows.Forms.TextBox txtReference;
  322. private System.Windows.Forms.Button btnPlaceOrder;
  323. private System.Windows.Forms.Button btnCancel;
  324. private System.Windows.Forms.Label label1;
  325. private System.Windows.Forms.Label label2;
  326. private System.Windows.Forms.Button btnAddProduct;
  327. private System.Windows.Forms.ListBox lstSelectedProducts;
  328. private System.Windows.Forms.Label label3;
  329. private System.Windows.Forms.Label lblTotalValue;
  330. private System.Windows.Forms.Label label5;
  331. private System.Windows.Forms.Label lblTotalCost;
  332. private System.Windows.Forms.Label label7;
  333. private System.Windows.Forms.Label lblRemainingBalance;
  334. private System.Windows.Forms.Button btnRemoveProduct;
  335. private System.Windows.Forms.Label lblRemainingAllowanceText;
  336. private System.Windows.Forms.Label lblRemainingAllowance;
  337. private System.Windows.Forms.Label label4;
  338. private System.Windows.Forms.Label label6;
  339. }
  340. }