-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfrmText.frm
78 lines (76 loc) · 2.29 KB
/
frmText.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
VERSION 5.00
Begin VB.Form frmText
BackColor = &H00000000&
BorderStyle = 0 'None
Caption = "Form1"
ClientHeight = 4620
ClientLeft = 0
ClientTop = 0
ClientWidth = 4575
FillColor = &H000020FF&
ForeColor = &H00000000&
Icon = "frmText.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
MouseIcon = "frmText.frx":000C
MousePointer = 99 'Custom
ScaleHeight = 308
ScaleMode = 3 'Pixel
ScaleWidth = 305
ShowInTaskbar = 0 'False
StartUpPosition = 2 'CenterScreen
Begin VB.Label lblDay
BackColor = &H00000000&
BeginProperty Font
Name = "Monotype Corsiva"
Size = 12
Charset = 204
Weight = 700
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000CE00&
Height = 255
Left = 600
MouseIcon = "frmText.frx":0316
MousePointer = 99 'Custom
TabIndex = 1
Top = 120
Width = 1935
End
Begin VB.Label lblText
BackColor = &H00000000&
BeginProperty Font
Name = "Monotype Corsiva"
Size = 9.75
Charset = 204
Weight = 400
Underline = 0 'False
Italic = -1 'True
Strikethrough = 0 'False
EndProperty
ForeColor = &H000020FF&
Height = 3975
Left = 120
MouseIcon = "frmText.frx":0620
MousePointer = 99 'Custom
TabIndex = 0
Top = 480
Width = 4335
End
End
Attribute VB_Name = "frmText"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Public Sub Load()
lblDay = "Äåíü " & Level
frmText.Height = (32 + (Len(lblText) \ 50 + 1) * 17) * 15
End Sub
Private Sub lblText_Click()
Unload frmText
End Sub