Advertisement
Guest User

Untitled

a guest
Jul 16th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.66 KB | None | 0 0
  1. namespace Request_Operator
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9.  
  10. /// <summary>
  11. /// Clean up any resources being used.
  12. /// </summary>
  13. /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14. protected override void Dispose(bool disposing)
  15. {
  16. if (disposing && (components != null))
  17. {
  18. components.Dispose();
  19. }
  20. base.Dispose(disposing);
  21. }
  22.  
  23. #region Windows Form Designer generated code
  24.  
  25. /// <summary>
  26. /// Required method for Designer support - do not modify
  27. /// the contents of this method with the code editor.
  28. /// </summary>
  29. private void InitializeComponent()
  30. {
  31. this.button_update_choke = new System.Windows.Forms.Button();
  32. this.textBox_choke_well_1 = new System.Windows.Forms.TextBox();
  33. this.label1 = new System.Windows.Forms.Label();
  34. this.SuspendLayout();
  35. //
  36. // button_update_choke
  37. //
  38. this.button_update_choke.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F);
  39. this.button_update_choke.Location = new System.Drawing.Point(466, 160);
  40. this.button_update_choke.Name = "button_update_choke";
  41. this.button_update_choke.Size = new System.Drawing.Size(386, 96);
  42. this.button_update_choke.TabIndex = 0;
  43. this.button_update_choke.Text = "UPDATE CHOKE";
  44. this.button_update_choke.UseVisualStyleBackColor = true;
  45. this.button_update_choke.Click += new System.EventHandler(this.button_update_choke_Click);
  46. //
  47. // textBox_choke_well_1
  48. //
  49. this.textBox_choke_well_1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
  50. this.textBox_choke_well_1.Location = new System.Drawing.Point(159, 172);
  51. this.textBox_choke_well_1.Name = "textBox_choke_well_1";
  52. this.textBox_choke_well_1.Size = new System.Drawing.Size(229, 64);
  53. this.textBox_choke_well_1.TabIndex = 3;
  54. //
  55. // label1
  56. //
  57. this.label1.AutoSize = true;
  58. this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 15F);
  59. this.label1.Location = new System.Drawing.Point(121, 34);
  60. this.label1.Name = "label1";
  61. this.label1.Size = new System.Drawing.Size(803, 58);
  62. this.label1.TabIndex = 4;
  63. this.label1.Text = "PREVIOUS CHOKE VALUE: NULL";
  64. //
  65. // Form1
  66. //
  67. this.AutoScaleDimensions = new System.Drawing.SizeF(16F, 31F);
  68. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  69. this.ClientSize = new System.Drawing.Size(1014, 328);
  70. this.Controls.Add(this.label1);
  71. this.Controls.Add(this.textBox_choke_well_1);
  72. this.Controls.Add(this.button_update_choke);
  73. this.MaximizeBox = false;
  74. this.Name = "Form1";
  75. this.Text = "Oilfield Operator App";
  76. this.Load += new System.EventHandler(this.Form1_Load);
  77. this.ResumeLayout(false);
  78. this.PerformLayout();
  79.  
  80. }
  81.  
  82. #endregion
  83.  
  84. private System.Windows.Forms.Button button_update_choke;
  85. private System.Windows.Forms.TextBox textBox_choke_well_1;
  86. private System.Windows.Forms.Label label1;
  87. }
  88. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement