-
Notifications
You must be signed in to change notification settings - Fork 4
/
FrmSplash.frm
47 lines (45 loc) · 1.19 KB
/
FrmSplash.frm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
VERSION 5.00
Begin VB.Form FrmSplash
AutoRedraw = -1 'True
BorderStyle = 1 'Fixed Single
ClientHeight = 3285
ClientLeft = 15
ClientTop = 15
ClientWidth = 5280
ControlBox = 0 'False
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
Picture = "FrmSplash.frx":0000
ScaleHeight = 3285
ScaleWidth = 5280
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Timer tmrTimer
Interval = 2000
Left = 0
Top = 0
End
End
Attribute VB_Name = "FrmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
'--> avaco Uninstaller 2002
'--> version 1.00
'--> Version Language : English
'--> By Agus Ramadhani
'--> avaco software
'--> http://avaco-software.tripod.com
'--> [email protected]
'--> 2002-2003
'--> Don't forget to Vote :)
Private Sub Form_Click()
Unload Me
End Sub
Private Sub tmrTimer_Timer()
tmrTimer.Enabled = False
Unload Me
End Sub