PageRenderTime 24ms CodeModel.GetById 0ms RepoModel.GetById 0ms app.codeStats 0ms

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

#
Visual Basic | 88 lines | 64 code | 4 blank | 20 comment | 0 complexity | fe88109a732215f4ab943e2c8f21c736 MD5 | raw file
  1. <Global.Microsoft.VisualBasic.CompilerServices.DesignerGenerated()> _
  2. Partial Class Form2
  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.lbDisplay = New System.Windows.Forms.Label
  26. Me.GroupBox1.SuspendLayout()
  27. Me.SuspendLayout()
  28. '
  29. 'GroupBox1
  30. '
  31. Me.GroupBox1.Controls.Add(Me.lbDisplay)
  32. Me.GroupBox1.Controls.Add(Me.Label2)
  33. Me.GroupBox1.Controls.Add(Me.Label1)
  34. Me.GroupBox1.Font = New System.Drawing.Font("Verdana", 9.75!)
  35. Me.GroupBox1.Location = New System.Drawing.Point(12, 12)
  36. Me.GroupBox1.Name = "GroupBox1"
  37. Me.GroupBox1.Size = New System.Drawing.Size(525, 295)
  38. Me.GroupBox1.TabIndex = 12
  39. Me.GroupBox1.TabStop = False
  40. Me.GroupBox1.Text = "Pass value between forms"
  41. '
  42. 'Label1
  43. '
  44. Me.Label1.Location = New System.Drawing.Point(31, 31)
  45. Me.Label1.Name = "Label1"
  46. Me.Label1.Size = New System.Drawing.Size(460, 36)
  47. Me.Label1.TabIndex = 0
  48. Me.Label1.Text = "This example demonstrates how to pass value between forms."
  49. '
  50. 'Label2
  51. '
  52. Me.Label2.AutoSize = True
  53. Me.Label2.Location = New System.Drawing.Point(31, 78)
  54. Me.Label2.Name = "Label2"
  55. Me.Label2.Size = New System.Drawing.Size(221, 16)
  56. Me.Label2.TabIndex = 1
  57. Me.Label2.Text = "The value passed from form1 is:"
  58. '
  59. 'lbDisplay
  60. '
  61. Me.lbDisplay.AutoSize = True
  62. Me.lbDisplay.ForeColor = System.Drawing.Color.Red
  63. Me.lbDisplay.Location = New System.Drawing.Point(32, 116)
  64. Me.lbDisplay.Name = "lbDisplay"
  65. Me.lbDisplay.Size = New System.Drawing.Size(0, 16)
  66. Me.lbDisplay.TabIndex = 2
  67. '
  68. 'Form2
  69. '
  70. Me.AutoScaleDimensions = New System.Drawing.SizeF(6.0!, 13.0!)
  71. Me.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font
  72. Me.ClientSize = New System.Drawing.Size(549, 325)
  73. Me.Controls.Add(Me.GroupBox1)
  74. Me.Name = "Form2"
  75. Me.Text = "Form2"
  76. Me.GroupBox1.ResumeLayout(False)
  77. Me.GroupBox1.PerformLayout()
  78. Me.ResumeLayout(False)
  79. End Sub
  80. Private WithEvents GroupBox1 As System.Windows.Forms.GroupBox
  81. Private WithEvents Label2 As System.Windows.Forms.Label
  82. Private WithEvents Label1 As System.Windows.Forms.Label
  83. Private WithEvents lbDisplay As System.Windows.Forms.Label
  84. End Class