-
Notifications
You must be signed in to change notification settings - Fork 0
/
frmNotify.frm
105 lines (99 loc) · 2.79 KB
/
frmNotify.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
VERSION 5.00
Begin VB.Form frmNotify
BackColor = &H00C0FFFF&
BorderStyle = 0 'None
Caption = "Security Warning Blocked"
ClientHeight = 495
ClientLeft = 0
ClientTop = 0
ClientWidth = 7545
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
ScaleHeight = 495
ScaleWidth = 7545
ShowInTaskbar = 0 'False
StartUpPosition = 3 'Windows Default
Begin VB.Label lblNum
Alignment = 2 'Center
BackStyle = 0 'Transparent
Caption = "0"
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 6960
TabIndex = 2
Top = 150
Width = 420
End
Begin VB.Label blockedinfo
BackStyle = 0 'Transparent
BeginProperty Font
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 195
Left = 3060
TabIndex = 1
Top = 150
Width = 3765
End
Begin VB.Label Label1
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "IE Security Warning Filter blocked from:"
Height = 195
Left = 180
TabIndex = 0
Top = 150
Width = 2850
End
Begin VB.Shape shpBack
Height = 495
Left = 0
Top = 0
Width = 7545
End
End
Attribute VB_Name = "frmNotify"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private FormOnTop As New clsWinTools
Private Sub blockedinfo_Click()
frmNotify.Hide
End Sub
Private Sub Form_Click()
frmNotify.Hide
End Sub
Private Sub Form_Load()
Set FormOnTop = New clsWinTools
FormOnTop.MakeTopMost frmNotify.hWnd
End Sub
Private Sub Form_Paint()
lblNum.Caption = numBlocked
End Sub
Private Sub Label1_Click()
frmNotify.Hide
End Sub