home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic .NET - Read Less - Learn More / Visual_Basic.NET_Read_Less_Learn_More_Richard_Bowman_Visual_2002.iso / Resources / Code / Ch8InheritForms / Form2.vb < prev   
Text File  |  2001-08-09  |  1KB  |  50 lines

  1.  
  2.  
  3. Public Class Form2
  4.     Inherits Ch8InheritForms.Form1
  5.  
  6. #Region " Windows Form Designer generated code "
  7.  
  8.     Public Sub New()
  9.         MyBase.New()
  10.  
  11.         'This call is required by the Windows Form Designer.
  12.         InitializeComponent()
  13.  
  14.         'Add any initialization after the InitializeComponent() call
  15.  
  16.     End Sub
  17.  
  18.     'Form overrides dispose to clean up the component list.
  19.     Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  20.         If disposing Then
  21.             If Not (components Is Nothing) Then
  22.                 components.Dispose()
  23.             End If
  24.         End If
  25.         MyBase.Dispose(disposing)
  26.     End Sub
  27.  
  28.     'Required by the Windows Form Designer
  29.     Private components As System.ComponentModel.Container
  30.  
  31.     'NOTE: The following procedure is required by the Windows Form Designer
  32.     'It can be modified using the Windows Form Designer.  
  33.     'Do not modify it using the code editor.
  34.     <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  35.         Me.SuspendLayout()
  36.         '
  37.         'Form2
  38.         '
  39.         Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
  40.         Me.ClientSize = New System.Drawing.Size(292, 133)
  41.         Me.Name = "Form2"
  42.         Me.Text = "Inherited Dialog"
  43.         Me.ResumeLayout(False)
  44.  
  45.     End Sub
  46.  
  47. #End Region
  48.  
  49. End Class
  50.