-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLogFrm.frm
81 lines (80 loc) · 2.39 KB
/
LogFrm.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
VERSION 5.00
Begin VB.Form LogFrm
Appearance = 0 '平面
BackColor = &H80000005&
BorderStyle = 3 '雙線固定對話方塊
Caption = "Form1"
ClientHeight = 3015
ClientLeft = 45
ClientTop = 390
ClientWidth = 8685
Icon = "LogFrm.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3015
ScaleWidth = 8685
ShowInTaskbar = 0 'False
StartUpPosition = 3 '系統預設值
Begin VB.PictureBox Picture2
Appearance = 0 '平面
BackColor = &H80000005&
ForeColor = &H80000008&
Height = 375
Left = 8280
Picture = "LogFrm.frx":10CA
ScaleHeight = 345
ScaleWidth = 345
TabIndex = 2
ToolTipText = "清空紀錄文字(&C)"
Top = 360
Width = 375
End
Begin VB.PictureBox Picture1
Appearance = 0 '平面
BackColor = &H80000005&
ForeColor = &H80000008&
Height = 375
Left = 8280
Picture = "LogFrm.frx":1A74
ScaleHeight = 345
ScaleWidth = 345
TabIndex = 1
ToolTipText = "清空紀錄文字(&C)"
Top = 0
Width = 375
End
Begin VB.TextBox LogLbl
Appearance = 0 '平面
BeginProperty Font
Name = "Arial"
Size = 9
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 3015
Left = 0
Locked = -1 'True
MultiLine = -1 'True
ScrollBars = 2 '垂直捲軸
TabIndex = 0
TabStop = 0 'False
Text = "LogFrm.frx":241E
Top = 0
Width = 8295
End
End
Attribute VB_Name = "LogFrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Me.Width = LogLbl.Width + Picture1.Width
End Sub
Private Sub LogLbl_Change()
TxtSave
End Sub