Imports MyForm = System.Windows.Forms.Form Class Form1 Inherits MyForm Friend WithEvents Label1 As System.Windows.Forms.Label Private Sub InitializeComponent() Me.Label1 = New System.Windows.Forms.Label() Me.SuspendLayout() ' 'Label1 ' Me.Label1.Location = New System.Drawing.Point(32, 32) Me.Label1.Name = "Label1" Me.Label1.Size = New System.Drawing.Size(216, 104) Me.Label1.TabIndex = 0 Me.Label1.Text = "Please note that this is not a project that you can compile or run. We have incl" & _ "uded the chapter's snippets in *.vb files for your convenience." ' 'Form1 ' Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13) Me.ClientSize = New System.Drawing.Size(292, 189) Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.Label1}) Me.Name = "Form1" Me.ResumeLayout(False) End Sub End Class 'Declare the MyForms namespace Namespace MyForms 'Define classes to be included in the MyForms namespace Public Class Form1 End Class 'More classes... End Namespace 'End of MyForms namespace 'Declare the MyForms.Transactions namespace Namespace MyForms.Transactions 'Define classes to be included in the MyForms.Transactions namespace Public Class Form2 End Class 'More classes... End Namespace 'End of MyForms.Transactions namespace