home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMain
- BackColor = &H00000000&
- BorderStyle = 0 'None
- Caption = "Look at da pretty snow!"
- ClientHeight = 3600
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 4800
- BeginProperty Font
- Name = "Fixedsys"
- Size = 9
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H00808080&
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- Picture = "frmMain.frx":0000
- ScaleHeight = 240
- ScaleMode = 3 'Pixel
- ScaleWidth = 320
- ShowInTaskbar = 0 'False
- StartUpPosition = 2 'CenterScreen
- Attribute VB_Name = "frmMain"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private mySnow As New VBSnow
- Private myScreen As New CDXVBScreen
- Private Sub Form_Click()
- myScreen.ShowMouse
- Unload Me
- End Sub
- Private Sub Form_KeyPress(KeyAscii As Integer)
- Me.Cls
- End Sub
- Private Sub Form_Load()
- Me.Show
- bActive = True
- myScreen.CreateFullScreen Me.hWnd, 320, 240, 16
- myScreen.HideMouse
- Do While DoEvents()
- DoEvents
- mySnow.DrawFlakes Me
- Loop
- End Sub
-