home *** CD-ROM | disk | FTP | other *** search
/ 207.233.110.77 / 207.233.110.77.tar / 207.233.110.77 / MoonPhases / MoonPhases.zip / MoonPhases / frmMoonPhases.vb < prev    next >
Text File  |  2003-01-21  |  3KB  |  76 lines

  1. Public Class frmMoonPhases
  2.   Inherits System.Windows.Forms.Form
  3.  
  4. #Region " Windows Form Designer generated code "
  5.  
  6.   Public Sub New()
  7.     MyBase.New()
  8.  
  9.     'This call is required by the Windows Form Designer.
  10.     InitializeComponent()
  11.  
  12.     'Add any initialization after the InitializeComponent() call
  13.  
  14.   End Sub
  15.  
  16.   'Form overrides dispose to clean up the component list.
  17.   Protected Overloads Overrides Sub Dispose(ByVal disposing As Boolean)
  18.     If disposing Then
  19.       If Not (components Is Nothing) Then
  20.         components.Dispose()
  21.       End If
  22.     End If
  23.     MyBase.Dispose(disposing)
  24.   End Sub
  25.  
  26.   'Required by the Windows Form Designer
  27.   Private components As System.ComponentModel.IContainer
  28.  
  29.   'NOTE: The following procedure is required by the Windows Form Designer
  30.   'It can be modified using the Windows Form Designer.  
  31.   'Do not modify it using the code editor.
  32.   Friend WithEvents MoonPictures As System.Windows.Forms.ImageList
  33.   Friend WithEvents Timer As System.Windows.Forms.Timer
  34.   Friend WithEvents PictureBox As System.Windows.Forms.PictureBox
  35.   <System.Diagnostics.DebuggerStepThrough()> Private Sub InitializeComponent()
  36.     Me.components = New System.ComponentModel.Container()
  37.     Dim resources As System.Resources.ResourceManager = New System.Resources.ResourceManager(GetType(frmMoonPhases))
  38.     Me.PictureBox = New System.Windows.Forms.PictureBox()
  39.     Me.MoonPictures = New System.Windows.Forms.ImageList(Me.components)
  40.     Me.Timer = New System.Windows.Forms.Timer(Me.components)
  41.     Me.SuspendLayout()
  42.     '
  43.     'PictureBox
  44.     '
  45.     Me.PictureBox.Image = CType(resources.GetObject("PictureBox.Image"), System.Drawing.Bitmap)
  46.     Me.PictureBox.Location = New System.Drawing.Point(102, 22)
  47.     Me.PictureBox.Name = "PictureBox"
  48.     Me.PictureBox.Size = New System.Drawing.Size(100, 100)
  49.     Me.PictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.AutoSize
  50.     Me.PictureBox.TabIndex = 0
  51.     Me.PictureBox.TabStop = False
  52.     '
  53.     'MoonPictures
  54.     '
  55.     Me.MoonPictures.ColorDepth = System.Windows.Forms.ColorDepth.Depth8Bit
  56.     Me.MoonPictures.ImageSize = New System.Drawing.Size(100, 100)
  57.     Me.MoonPictures.ImageStream = CType(resources.GetObject("MoonPictures.ImageStream"), System.Windows.Forms.ImageListStreamer)
  58.     Me.MoonPictures.TransparentColor = System.Drawing.Color.Transparent
  59.     '
  60.     'frmMoonPhases
  61.     '
  62.     Me.AutoScaleBaseSize = New System.Drawing.Size(5, 13)
  63.     Me.ClientSize = New System.Drawing.Size(304, 199)
  64.     Me.Controls.AddRange(New System.Windows.Forms.Control() {Me.PictureBox})
  65.     Me.Icon = CType(resources.GetObject("$this.Icon"), System.Drawing.Icon)
  66.     Me.Name = "frmMoonPhases"
  67.     Me.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen
  68.     Me.Text = "Moon Phases"
  69.     Me.ResumeLayout(False)
  70.  
  71.   End Sub
  72.  
  73. #End Region
  74.  
  75. End Class
  76.