home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 October / CMCD1004.ISO / Software / Shareware / Programare / netxp / netxp.exe / Samples / VB / Controls / AboutBox.vb < prev    next >
Encoding:
Text File  |  2004-04-09  |  1001 b   |  34 lines

  1. Imports System
  2. Imports System.Collections
  3. Imports System.ComponentModel
  4. Imports System.Drawing
  5. Imports System.Windows.Forms
  6.  
  7. Namespace Controls
  8.     Public Class AboutBox
  9.         Inherits NETXP.Forms.About
  10.         Private components As System.ComponentModel.IContainer
  11.  
  12.         Public Sub New()
  13.             ' This call is required by the Windows Form Designer.
  14.             InitializeComponent()
  15.  
  16.             ' TODO: Add any initialization after the InitializeComponent call
  17.         End Sub
  18.  
  19.         Protected 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. #Region "Designer generated code"
  29.         Private Sub InitializeComponent()
  30.             components = New System.ComponentModel.Container
  31.         End Sub
  32. #End Region
  33.     End Class
  34. End Namespace