home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Hot Shareware 35
/
hot35.iso
/
ficheros
/
LVB
/
T2W32543.ZIP
/
_TILE.FRM
< prev
next >
Wrap
Text File
|
1998-05-21
|
993b
|
52 lines
VERSION 5.00
Begin VB.Form frmTile
Caption = "TileBitmap"
ClientHeight = 3375
ClientLeft = 1140
ClientTop = 1515
ClientWidth = 4980
MDIChild = -1 'True
PaletteMode = 1 'UseZOrder
ScaleHeight = 3375
ScaleWidth = 4980
End
Attribute VB_Name = "frmTile"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Option Base 1
Private Const Iteration = 25
Dim IsLoaded As Integer
Dim TimerStartOk As Integer
Dim TimerCloseOk As Integer
Dim TimerHandle As Integer
Dim TimerValue As Long
Private Sub Form_Load()
IsLoaded = False
Show
IsLoaded = True
End Sub
Private Sub Form_Paint()
Dim intResult As Integer
intResult = cTileBitmapOnWindow(Me.hWnd, App.Path + "\time2win.dib")
End Sub