-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfrmstop.frm
85 lines (82 loc) · 2.28 KB
/
frmstop.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
VERSION 5.00
Begin VB.Form frmstop
AutoRedraw = -1 'True
BackColor = &H00E0E0E0&
BorderStyle = 0 'None
Caption = "Responder"
ClientHeight = 2055
ClientLeft = 0
ClientTop = 0
ClientWidth = 3135
LinkTopic = "Form2"
ScaleHeight = 2055
ScaleWidth = 3135
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Timer Timer1
Enabled = 0 'False
Left = 1680
Top = 600
End
Begin VB.Shape Shape1
Height = 2055
Left = 0
Top = 0
Width = 3135
End
Begin VB.Label Label2
Alignment = 2 'Center
Appearance = 0 'Flat
BackColor = &H00FF0000&
BorderStyle = 1 'Fixed Single
Caption = "You Are Not Logged On"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 255
Left = 0
TabIndex = 1
Top = 0
Width = 3135
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = $"frmstop.frx":0000
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1575
Left = 120
TabIndex = 0
Top = 360
Width = 2895
End
End
Attribute VB_Name = "frmstop"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Timer1.Interval = 9000
Timer1.Enabled = True
End Sub
Private Sub Label4_Click()
End
End Sub
Private Sub Timer1_Timer()
End
End Sub