home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form MainForm
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BorderStyle = 0 'None
- Caption = "Form1"
- ClientHeight = 3195
- ClientLeft = 0
- ClientTop = 0
- ClientWidth = 4680
- BeginProperty Font
- Name = "Times New Roman"
- Size = 36
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Icon = "MainForm.frx":0000
- LinkTopic = "Form1"
- ScaleHeight = 213
- ScaleMode = 3 'Pixel
- ScaleWidth = 312
- ShowInTaskbar = 1 'True
- StartUpPosition = 3 'Windows Default
- WindowState = 2 'Maximized
- End
- Attribute VB_Name = "MainForm"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Form_KeyPress(KeyAscii As Integer)
- If KeyAscii = 27 Then
- ExitLoop = True
- End If
- End Sub
-
- Public Sub Form_Paint()
- BlitRect.Right = DDSBackDesc.lWidth
- BlitRect.Bottom = DDSBackDesc.lHeight
- DDSFront.Blt BlitRect, DDSBack, BlitRect, DDBLT_WAIT
- End Sub
-