PageRenderTime 41ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Visual Studio 2008/VBWinFormPassValueBetweenForms/Form1.Designer.vb

#
Visual Basic | 112 lines | 81 code | 5 blank | 26 comment | 0 complexity | 0778cb21a2f9e135391531b864209afc MD5 | raw file
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Form1
  3. Inherits System.Windows.Forms.Form
  4. 'Form overrides dispose to clean up the component list.
  5. <System.Diagnostics.DebuggerNonUserCode()> _
  6. Protected Overrides Sub Dispose(ByVal disposing As Boolean)
  7. Try
  8. If disposing AndAlso components IsNot Nothing Then
  9. components.Dispose()
  10. End If
  11. Finally
  12. MyBase.Dispose(disposing)
  13. End Try
  14. End Sub
  15. 'Required by the Windows Form Designer
  16. Private components As System.ComponentModel.IContainer
  17. 'NOTE: The following procedure is required by the Windows Form Designer
  18. 'It can be modified using the Windows Form Designer.
  19. 'Do not modify it using the code editor.
  20. <System.Diagnostics.DebuggerStepThrough()> _
  21. Private Sub InitializeComponent()
  22. Me.GroupBox1 = New System.Windows.Forms.GroupBox
  23. Me.Label1 = New System.Windows.Forms.Label
  24. Me.Label2 = New System.Windows.Forms.Label
  25. Me.TextBox1 = New System.Windows.Forms.TextBox
  26. Me.Button1 = New System.Windows.Forms.Button
  27. Me.Button2 = New System.Windows.Forms.Button
  28. Me.GroupBox1.SuspendLayout()
  29. Me.SuspendLayout()
  30. '
  31. 'GroupBox1
  32. '
  33. Me.GroupBox1.Controls.Add(Me.Button2)
  34. Me.GroupBox1.Controls.Add(Me.Button1)
  35. Me.GroupBox1.Controls.Add(Me.TextBox1)
  36. Me.GroupBox1.Controls.Add(Me.Label2)
  37. Me.GroupBox1.Controls.Add(Me.Label1)
  38. Me.GroupBox1.Font = New System.Drawing.Font("Verdana", 9.75!)
  39. Me.GroupBox1.Location = New System.Drawing.Point(12, 12)
  40. Me.GroupBox1.Name = "GroupBox1"
  41. Me.GroupBox1.Size = New System.Drawing.Size(583, 320)
  42. Me.GroupBox1.TabIndex = 11
  43. Me.GroupBox1.TabStop = False
  44. Me.GroupBox1.Text = "Pass value between forms"
  45. '
  46. 'Label1
  47. '
  48. Me.Label1.Location = New System.Drawing.Point(31, 31)
  49. Me.Label1.Name = "Label1"
  50. Me.Label1.Size = New System.Drawing.Size(533, 36)
  51. Me.Label1.TabIndex = 0
  52. Me.Label1.Text = "This example demonstrates how to pass value between forms."
  53. '
  54. 'Label2
  55. '
  56. Me.Label2.AutoSize = True
  57. Me.Label2.Location = New System.Drawing.Point(31, 78)
  58. Me.Label2.Name = "Label2"
  59. Me.Label2.Size = New System.Drawing.Size(380, 16)
  60. Me.Label2.TabIndex = 1
  61. Me.Label2.Text = "Input the value you want to pass to another form here:"
  62. '
  63. 'TextBox1
  64. '
  65. Me.TextBox1.Location = New System.Drawing.Point(34, 116)
  66. Me.TextBox1.Name = "TextBox1"
  67. Me.TextBox1.Size = New System.Drawing.Size(371, 23)
  68. Me.TextBox1.TabIndex = 4
  69. '
  70. 'Button1
  71. '
  72. Me.Button1.Location = New System.Drawing.Point(34, 156)
  73. Me.Button1.Name = "Button1"
  74. Me.Button1.Size = New System.Drawing.Size(371, 27)
  75. Me.Button1.TabIndex = 5
  76. Me.Button1.Text = "Pass value to another form using property."
  77. Me.Button1.UseVisualStyleBackColor = True
  78. '
  79. 'Button2
  80. '
  81. Me.Button2.Location = New System.Drawing.Point(34, 196)
  82. Me.Button2.Name = "Button2"
  83. Me.Button2.Size = New System.Drawing.Size(371, 28)
  84. Me.Button2.TabIndex = 6
  85. Me.Button2.Text = "Pass value to another form using method"
  86. Me.Button2.UseVisualStyleBackColor = True
  87. '
  88. 'Form1
  89. '
  90. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  91. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  92. Me.ClientSize = New System.Drawing.Size(606, 348)
  93. Me.Controls.Add(Me.GroupBox1)
  94. Me.Name = "Form1"
  95. Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  96. Me.Text = "Form1"
  97. Me.GroupBox1.ResumeLayout(False)
  98. Me.GroupBox1.PerformLayout()
  99. Me.ResumeLayout(False)
  100. End Sub
  101. Private WithEvents GroupBox1 As System.Windows.Forms.GroupBox
  102. Private WithEvents Label1 As System.Windows.Forms.Label
  103. Private WithEvents Label2 As System.Windows.Forms.Label
  104. Private WithEvents Button2 As System.Windows.Forms.Button
  105. Private WithEvents Button1 As System.Windows.Forms.Button
  106. Private WithEvents TextBox1 As System.Windows.Forms.TextBox
  107. End Class