Advertisement
Guest User

Untitled

a guest
Apr 13th, 2012
134
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 22.96 KB | None | 0 0
  1. //Adding control to panel2
  2. splitContainer1.Panel2.Controls.Clear();
  3. ucFactuur ucFactuur = new ucFactuur();
  4.  
  5. ucFactuur.Location = new Point(
  6. splitContainer1.Panel2.ClientSize.Width / 2 - ucFactuur.Size.Width / 2,
  7. splitContainer1.Panel2.ClientSize.Height / 2 - ucFactuur.Size.Height / 2);
  8. ucFactuur.Anchor = AnchorStyles.None;
  9.  
  10. splitContainer1.Panel2.Controls.Add(ucFactuur);
  11.  
  12. splitContainer1.Panel2.AutoScrollMinSize = ucFactuur.Size;
  13.  
  14. lblStatus.Text = "Factuurbeheer";
  15. //Code for ucFactuur
  16. partial class ucFactuur
  17. {
  18. /// <summary>
  19. /// Required designer variable.
  20. /// </summary>
  21. private System.ComponentModel.IContainer components = null;
  22.  
  23. /// <summary>
  24. /// Clean up any resources being used.
  25. /// </summary>
  26. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  27. protected override void Dispose(bool disposing)
  28. {
  29. if (disposing && (components != null))
  30. {
  31. components.Dispose();
  32. }
  33. base.Dispose(disposing);
  34. }
  35.  
  36. #region Component Designer generated code
  37.  
  38. /// <summary>
  39. /// Required method for Designer support - do not modify
  40. /// the contents of this method with the code editor.
  41. /// </summary>
  42. private void InitializeComponent()
  43. {
  44. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ucFactuur));
  45. this.txtVoorschot = new System.Windows.Forms.TextBox();
  46. this.label15 = new System.Windows.Forms.Label();
  47. this.label3 = new System.Windows.Forms.Label();
  48. this.cbbBestemming = new System.Windows.Forms.ComboBox();
  49. this.label7 = new System.Windows.Forms.Label();
  50. this.cbbVertrek = new System.Windows.Forms.ComboBox();
  51. this.label6 = new System.Windows.Forms.Label();
  52. this.groupBox1 = new System.Windows.Forms.GroupBox();
  53. this.label8 = new System.Windows.Forms.Label();
  54. this.txtTot_uur = new System.Windows.Forms.MaskedTextBox();
  55. this.btnNieuwBestemming = new System.Windows.Forms.Button();
  56. this.txtVan_uur = new System.Windows.Forms.MaskedTextBox();
  57. this.btnNieuwVertrek = new System.Windows.Forms.Button();
  58. this.btnZoeken = new System.Windows.Forms.Button();
  59. this.txtPrijs = new System.Windows.Forms.TextBox();
  60. this.label5 = new System.Windows.Forms.Label();
  61. this.txtAantalDagen = new System.Windows.Forms.TextBox();
  62. this.dtTot = new System.Windows.Forms.DateTimePicker();
  63. this.dtVan = new System.Windows.Forms.DateTimePicker();
  64. this.label4 = new System.Windows.Forms.Label();
  65. this.cbbKlant = new System.Windows.Forms.ComboBox();
  66. this.label2 = new System.Windows.Forms.Label();
  67. this.btnVerwijder = new System.Windows.Forms.Button();
  68. this.cbbID = new System.Windows.Forms.ComboBox();
  69. this.label1 = new System.Windows.Forms.Label();
  70. this.flpReservaties = new System.Windows.Forms.FlowLayoutPanel();
  71. this.grbReservaties = new System.Windows.Forms.GroupBox();
  72. this.btnRemoveReservatie = new System.Windows.Forms.Button();
  73. this.btnAddReservatie = new System.Windows.Forms.Button();
  74. this.btnAnnuleren = new System.Windows.Forms.Button();
  75. this.btnOpslaan = new System.Windows.Forms.Button();
  76. this.groupBox1.SuspendLayout();
  77. this.grbReservaties.SuspendLayout();
  78. this.SuspendLayout();
  79. //
  80. // txtVoorschot
  81. //
  82. this.txtVoorschot.Location = new System.Drawing.Point(94, 206);
  83. this.txtVoorschot.Name = "txtVoorschot";
  84. this.txtVoorschot.Size = new System.Drawing.Size(241, 20);
  85. this.txtVoorschot.TabIndex = 60;
  86. //
  87. // label15
  88. //
  89. this.label15.AutoSize = true;
  90. this.label15.Location = new System.Drawing.Point(9, 209);
  91. this.label15.Name = "label15";
  92. this.label15.Size = new System.Drawing.Size(58, 13);
  93. this.label15.TabIndex = 59;
  94. this.label15.Text = "Voorschot:";
  95. //
  96. // label3
  97. //
  98. this.label3.AutoSize = true;
  99. this.label3.Location = new System.Drawing.Point(7, 103);
  100. this.label3.Name = "label3";
  101. this.label3.Size = new System.Drawing.Size(49, 13);
  102. this.label3.TabIndex = 57;
  103. this.label3.Text = "Van Uur:";
  104. //
  105. // cbbBestemming
  106. //
  107. this.cbbBestemming.FormattingEnabled = true;
  108. this.cbbBestemming.Location = new System.Drawing.Point(94, 153);
  109. this.cbbBestemming.Name = "cbbBestemming";
  110. this.cbbBestemming.Size = new System.Drawing.Size(205, 21);
  111. this.cbbBestemming.TabIndex = 52;
  112. //
  113. // label7
  114. //
  115. this.label7.AutoSize = true;
  116. this.label7.Location = new System.Drawing.Point(9, 157);
  117. this.label7.Name = "label7";
  118. this.label7.Size = new System.Drawing.Size(67, 13);
  119. this.label7.TabIndex = 51;
  120. this.label7.Text = "Bestemming:";
  121. //
  122. // cbbVertrek
  123. //
  124. this.cbbVertrek.FormattingEnabled = true;
  125. this.cbbVertrek.Location = new System.Drawing.Point(94, 126);
  126. this.cbbVertrek.Name = "cbbVertrek";
  127. this.cbbVertrek.Size = new System.Drawing.Size(205, 21);
  128. this.cbbVertrek.TabIndex = 49;
  129. //
  130. // label6
  131. //
  132. this.label6.AutoSize = true;
  133. this.label6.Location = new System.Drawing.Point(9, 130);
  134. this.label6.Name = "label6";
  135. this.label6.Size = new System.Drawing.Size(41, 13);
  136. this.label6.TabIndex = 48;
  137. this.label6.Text = "Vetrek:";
  138. //
  139. // groupBox1
  140. //
  141. this.groupBox1.Controls.Add(this.label8);
  142. this.groupBox1.Controls.Add(this.txtTot_uur);
  143. this.groupBox1.Controls.Add(this.btnNieuwBestemming);
  144. this.groupBox1.Controls.Add(this.txtVan_uur);
  145. this.groupBox1.Controls.Add(this.btnNieuwVertrek);
  146. this.groupBox1.Controls.Add(this.btnZoeken);
  147. this.groupBox1.Controls.Add(this.txtPrijs);
  148. this.groupBox1.Controls.Add(this.label5);
  149. this.groupBox1.Controls.Add(this.txtVoorschot);
  150. this.groupBox1.Controls.Add(this.label15);
  151. this.groupBox1.Controls.Add(this.label3);
  152. this.groupBox1.Controls.Add(this.cbbBestemming);
  153. this.groupBox1.Controls.Add(this.label7);
  154. this.groupBox1.Controls.Add(this.cbbVertrek);
  155. this.groupBox1.Controls.Add(this.label6);
  156. this.groupBox1.Controls.Add(this.txtAantalDagen);
  157. this.groupBox1.Controls.Add(this.dtTot);
  158. this.groupBox1.Controls.Add(this.dtVan);
  159. this.groupBox1.Controls.Add(this.label4);
  160. this.groupBox1.Controls.Add(this.cbbKlant);
  161. this.groupBox1.Controls.Add(this.label2);
  162. this.groupBox1.Controls.Add(this.btnVerwijder);
  163. this.groupBox1.Controls.Add(this.cbbID);
  164. this.groupBox1.Controls.Add(this.label1);
  165. this.groupBox1.Location = new System.Drawing.Point(5, 3);
  166. this.groupBox1.Name = "groupBox1";
  167. this.groupBox1.Size = new System.Drawing.Size(351, 258);
  168. this.groupBox1.TabIndex = 5;
  169. this.groupBox1.TabStop = false;
  170. this.groupBox1.Text = "Opdracht";
  171. //
  172. // label8
  173. //
  174. this.label8.AutoSize = true;
  175. this.label8.Location = new System.Drawing.Point(140, 103);
  176. this.label8.Name = "label8";
  177. this.label8.Size = new System.Drawing.Size(46, 13);
  178. this.label8.TabIndex = 82;
  179. this.label8.Text = "Tot Uur:";
  180. //
  181. // txtTot_uur
  182. //
  183. this.txtTot_uur.Location = new System.Drawing.Point(192, 100);
  184. this.txtTot_uur.Mask = "00:00";
  185. this.txtTot_uur.Name = "txtTot_uur";
  186. this.txtTot_uur.Size = new System.Drawing.Size(35, 20);
  187. this.txtTot_uur.TabIndex = 15;
  188. this.txtTot_uur.ValidatingType = typeof(System.DateTime);
  189. //
  190. // btnNieuwBestemming
  191. //
  192. this.btnNieuwBestemming.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnNieuwBestemming.BackgroundImage")));
  193. this.btnNieuwBestemming.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  194. this.btnNieuwBestemming.FlatAppearance.BorderSize = 0;
  195. this.btnNieuwBestemming.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  196. this.btnNieuwBestemming.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  197. this.btnNieuwBestemming.Location = new System.Drawing.Point(305, 153);
  198. this.btnNieuwBestemming.Name = "btnNieuwBestemming";
  199. this.btnNieuwBestemming.Size = new System.Drawing.Size(23, 21);
  200. this.btnNieuwBestemming.TabIndex = 81;
  201. this.btnNieuwBestemming.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
  202. this.btnNieuwBestemming.UseVisualStyleBackColor = true;
  203. this.btnNieuwBestemming.Click += new System.EventHandler(this.btnNieuwVertrek_Click);
  204. //
  205. // txtVan_uur
  206. //
  207. this.txtVan_uur.Location = new System.Drawing.Point(94, 100);
  208. this.txtVan_uur.Mask = "00:00";
  209. this.txtVan_uur.Name = "txtVan_uur";
  210. this.txtVan_uur.Size = new System.Drawing.Size(35, 20);
  211. this.txtVan_uur.TabIndex = 13;
  212. this.txtVan_uur.ValidatingType = typeof(System.DateTime);
  213. //
  214. // btnNieuwVertrek
  215. //
  216. this.btnNieuwVertrek.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnNieuwVertrek.BackgroundImage")));
  217. this.btnNieuwVertrek.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  218. this.btnNieuwVertrek.FlatAppearance.BorderSize = 0;
  219. this.btnNieuwVertrek.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  220. this.btnNieuwVertrek.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft;
  221. this.btnNieuwVertrek.Location = new System.Drawing.Point(305, 126);
  222. this.btnNieuwVertrek.Name = "btnNieuwVertrek";
  223. this.btnNieuwVertrek.Size = new System.Drawing.Size(23, 21);
  224. this.btnNieuwVertrek.TabIndex = 80;
  225. this.btnNieuwVertrek.TextImageRelation = System.Windows.Forms.TextImageRelation.ImageBeforeText;
  226. this.btnNieuwVertrek.UseVisualStyleBackColor = true;
  227. this.btnNieuwVertrek.Click += new System.EventHandler(this.btnNieuwVertrek_Click);
  228. //
  229. // btnZoeken
  230. //
  231. this.btnZoeken.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnZoeken.BackgroundImage")));
  232. this.btnZoeken.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  233. this.btnZoeken.FlatAppearance.BorderSize = 0;
  234. this.btnZoeken.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  235. this.btnZoeken.Location = new System.Drawing.Point(283, 19);
  236. this.btnZoeken.Name = "btnZoeken";
  237. this.btnZoeken.Size = new System.Drawing.Size(23, 23);
  238. this.btnZoeken.TabIndex = 79;
  239. this.btnZoeken.UseVisualStyleBackColor = true;
  240. this.btnZoeken.Click += new System.EventHandler(this.btnZoeken_Click);
  241. //
  242. // txtPrijs
  243. //
  244. this.txtPrijs.Location = new System.Drawing.Point(94, 180);
  245. this.txtPrijs.Name = "txtPrijs";
  246. this.txtPrijs.Size = new System.Drawing.Size(241, 20);
  247. this.txtPrijs.TabIndex = 64;
  248. //
  249. // label5
  250. //
  251. this.label5.AutoSize = true;
  252. this.label5.Location = new System.Drawing.Point(9, 183);
  253. this.label5.Name = "label5";
  254. this.label5.Size = new System.Drawing.Size(29, 13);
  255. this.label5.TabIndex = 63;
  256. this.label5.Text = "Prijs:";
  257. //
  258. // txtAantalDagen
  259. //
  260. this.txtAantalDagen.Location = new System.Drawing.Point(266, 73);
  261. this.txtAantalDagen.Name = "txtAantalDagen";
  262. this.txtAantalDagen.ReadOnly = true;
  263. this.txtAantalDagen.Size = new System.Drawing.Size(33, 20);
  264. this.txtAantalDagen.TabIndex = 43;
  265. //
  266. // dtTot
  267. //
  268. this.dtTot.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  269. this.dtTot.Location = new System.Drawing.Point(180, 74);
  270. this.dtTot.Name = "dtTot";
  271. this.dtTot.Size = new System.Drawing.Size(80, 20);
  272. this.dtTot.TabIndex = 42;
  273. //
  274. // dtVan
  275. //
  276. this.dtVan.Format = System.Windows.Forms.DateTimePickerFormat.Short;
  277. this.dtVan.Location = new System.Drawing.Point(94, 74);
  278. this.dtVan.Name = "dtVan";
  279. this.dtVan.Size = new System.Drawing.Size(80, 20);
  280. this.dtVan.TabIndex = 41;
  281. this.dtVan.ValueChanged += new System.EventHandler(this.dtVan_ValueChanged);
  282. //
  283. // label4
  284. //
  285. this.label4.AutoSize = true;
  286. this.label4.Location = new System.Drawing.Point(6, 76);
  287. this.label4.Name = "label4";
  288. this.label4.Size = new System.Drawing.Size(60, 13);
  289. this.label4.TabIndex = 40;
  290. this.label4.Text = "Reisdatum:";
  291. //
  292. // cbbKlant
  293. //
  294. this.cbbKlant.FormattingEnabled = true;
  295. this.cbbKlant.Location = new System.Drawing.Point(94, 46);
  296. this.cbbKlant.Name = "cbbKlant";
  297. this.cbbKlant.Size = new System.Drawing.Size(241, 21);
  298. this.cbbKlant.TabIndex = 35;
  299. //
  300. // label2
  301. //
  302. this.label2.AutoSize = true;
  303. this.label2.Location = new System.Drawing.Point(6, 49);
  304. this.label2.Name = "label2";
  305. this.label2.Size = new System.Drawing.Size(34, 13);
  306. this.label2.TabIndex = 34;
  307. this.label2.Text = "Klant:";
  308. //
  309. // btnVerwijder
  310. //
  311. this.btnVerwijder.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnVerwijder.BackgroundImage")));
  312. this.btnVerwijder.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  313. this.btnVerwijder.FlatAppearance.BorderSize = 0;
  314. this.btnVerwijder.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  315. this.btnVerwijder.Location = new System.Drawing.Point(312, 19);
  316. this.btnVerwijder.Name = "btnVerwijder";
  317. this.btnVerwijder.Size = new System.Drawing.Size(23, 23);
  318. this.btnVerwijder.TabIndex = 33;
  319. this.btnVerwijder.UseVisualStyleBackColor = true;
  320. //
  321. // cbbID
  322. //
  323. this.cbbID.Anchor = System.Windows.Forms.AnchorStyles.Left;
  324. this.cbbID.FormattingEnabled = true;
  325. this.cbbID.Location = new System.Drawing.Point(94, 19);
  326. this.cbbID.Name = "cbbID";
  327. this.cbbID.Size = new System.Drawing.Size(183, 21);
  328. this.cbbID.TabIndex = 31;
  329. this.cbbID.SelectionChangeCommitted += new System.EventHandler(this.cbbID_SelectionChangeCommitted);
  330. //
  331. // label1
  332. //
  333. this.label1.AutoSize = true;
  334. this.label1.Location = new System.Drawing.Point(7, 22);
  335. this.label1.Margin = new System.Windows.Forms.Padding(3, 0, 3, 10);
  336. this.label1.Name = "label1";
  337. this.label1.Size = new System.Drawing.Size(21, 13);
  338. this.label1.TabIndex = 30;
  339. this.label1.Text = "ID:";
  340. //
  341. // flpReservaties
  342. //
  343. this.flpReservaties.AutoSize = true;
  344. this.flpReservaties.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
  345. this.flpReservaties.FlowDirection = System.Windows.Forms.FlowDirection.TopDown;
  346. this.flpReservaties.Location = new System.Drawing.Point(6, 19);
  347. this.flpReservaties.Name = "flpReservaties";
  348. this.flpReservaties.Size = new System.Drawing.Size(0, 0);
  349. this.flpReservaties.TabIndex = 2;
  350. //
  351. // grbReservaties
  352. //
  353. this.grbReservaties.AutoSize = true;
  354. this.grbReservaties.Controls.Add(this.flpReservaties);
  355. this.grbReservaties.Location = new System.Drawing.Point(389, 3);
  356. this.grbReservaties.Name = "grbReservaties";
  357. this.grbReservaties.Size = new System.Drawing.Size(358, 77);
  358. this.grbReservaties.TabIndex = 7;
  359. this.grbReservaties.TabStop = false;
  360. this.grbReservaties.Text = "Reservaties";
  361. //
  362. // btnRemoveReservatie
  363. //
  364. this.btnRemoveReservatie.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnRemoveReservatie.BackgroundImage")));
  365. this.btnRemoveReservatie.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  366. this.btnRemoveReservatie.FlatAppearance.BorderSize = 0;
  367. this.btnRemoveReservatie.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  368. this.btnRemoveReservatie.Location = new System.Drawing.Point(362, 42);
  369. this.btnRemoveReservatie.Name = "btnRemoveReservatie";
  370. this.btnRemoveReservatie.Size = new System.Drawing.Size(23, 23);
  371. this.btnRemoveReservatie.TabIndex = 24;
  372. this.btnRemoveReservatie.UseVisualStyleBackColor = true;
  373. this.btnRemoveReservatie.Click += new System.EventHandler(this.btnRemoveReservatie_Click);
  374. //
  375. // btnAddReservatie
  376. //
  377. this.btnAddReservatie.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("btnAddReservatie.BackgroundImage")));
  378. this.btnAddReservatie.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Center;
  379. this.btnAddReservatie.FlatAppearance.BorderSize = 0;
  380. this.btnAddReservatie.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  381. this.btnAddReservatie.Location = new System.Drawing.Point(362, 15);
  382. this.btnAddReservatie.Name = "btnAddReservatie";
  383. this.btnAddReservatie.Size = new System.Drawing.Size(23, 23);
  384. this.btnAddReservatie.TabIndex = 23;
  385. this.btnAddReservatie.UseVisualStyleBackColor = true;
  386. this.btnAddReservatie.Click += new System.EventHandler(this.btnAddReservatie_Click);
  387. //
  388. // btnAnnuleren
  389. //
  390. this.btnAnnuleren.Location = new System.Drawing.Point(173, 267);
  391. this.btnAnnuleren.Name = "btnAnnuleren";
  392. this.btnAnnuleren.Size = new System.Drawing.Size(75, 23);
  393. this.btnAnnuleren.TabIndex = 12;
  394. this.btnAnnuleren.Text = "Annuleren";
  395. this.btnAnnuleren.UseVisualStyleBackColor = true;
  396. //
  397. // btnOpslaan
  398. //
  399. this.btnOpslaan.Location = new System.Drawing.Point(92, 267);
  400. this.btnOpslaan.Name = "btnOpslaan";
  401. this.btnOpslaan.Size = new System.Drawing.Size(75, 23);
  402. this.btnOpslaan.TabIndex = 11;
  403. this.btnOpslaan.Text = "Opslaan";
  404. this.btnOpslaan.UseVisualStyleBackColor = true;
  405. this.btnOpslaan.Click += new System.EventHandler(this.btnOpslaan_Click);
  406. //
  407. // ucFactuur
  408. //
  409. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  410. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  411. this.AutoSize = true;
  412. this.Controls.Add(this.btnRemoveReservatie);
  413. this.Controls.Add(this.btnAnnuleren);
  414. this.Controls.Add(this.btnAddReservatie);
  415. this.Controls.Add(this.btnOpslaan);
  416. this.Controls.Add(this.grbReservaties);
  417. this.Controls.Add(this.groupBox1);
  418. this.Name = "ucFactuur";
  419. this.Size = new System.Drawing.Size(757, 295);
  420. this.groupBox1.ResumeLayout(false);
  421. this.groupBox1.PerformLayout();
  422. this.grbReservaties.ResumeLayout(false);
  423. this.grbReservaties.PerformLayout();
  424. this.ResumeLayout(false);
  425. this.PerformLayout();
  426.  
  427. }
  428.  
  429. #endregion
  430.  
  431. private System.Windows.Forms.TextBox txtVoorschot;
  432. private System.Windows.Forms.Label label15;
  433. private System.Windows.Forms.Label label3;
  434. private System.Windows.Forms.ComboBox cbbBestemming;
  435. private System.Windows.Forms.Label label7;
  436. private System.Windows.Forms.ComboBox cbbVertrek;
  437. private System.Windows.Forms.Label label6;
  438. private System.Windows.Forms.GroupBox groupBox1;
  439. private System.Windows.Forms.TextBox txtPrijs;
  440. private System.Windows.Forms.Label label5;
  441. private System.Windows.Forms.TextBox txtAantalDagen;
  442. private System.Windows.Forms.DateTimePicker dtTot;
  443. private System.Windows.Forms.DateTimePicker dtVan;
  444. private System.Windows.Forms.Label label4;
  445. private System.Windows.Forms.ComboBox cbbKlant;
  446. private System.Windows.Forms.Label label2;
  447. private System.Windows.Forms.Button btnVerwijder;
  448. private System.Windows.Forms.ComboBox cbbID;
  449. private System.Windows.Forms.Label label1;
  450. private System.Windows.Forms.FlowLayoutPanel flpReservaties;
  451. private System.Windows.Forms.GroupBox grbReservaties;
  452. private System.Windows.Forms.Button btnAnnuleren;
  453. private System.Windows.Forms.Button btnOpslaan;
  454. private System.Windows.Forms.Button btnZoeken;
  455. private System.Windows.Forms.Button btnNieuwBestemming;
  456. private System.Windows.Forms.Button btnNieuwVertrek;
  457. private System.Windows.Forms.Button btnRemoveReservatie;
  458. private System.Windows.Forms.Button btnAddReservatie;
  459. private System.Windows.Forms.Label label8;
  460. private System.Windows.Forms.MaskedTextBox txtTot_uur;
  461. private System.Windows.Forms.MaskedTextBox txtVan_uur;
  462. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement