📄 timer.frm
字号:
VERSION 5.00
Begin VB.Form form1
BackColor = &H00404040&
BorderStyle = 1 'Fixed Single
Caption = "Clock"
ClientHeight = 1245
ClientLeft = 4080
ClientTop = 2220
ClientWidth = 3705
FillColor = &H000000FF&
FillStyle = 0 'Solid
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 1245
ScaleWidth = 3705
Begin VB.Timer Timer1
Interval = 1000
Left = 3000
Top = 675
End
Begin VB.Label Label1
Alignment = 2 'Center
BackColor = &H80000007&
BeginProperty Font
Name = "Times New Roman"
Size = 48
Charset = 0
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00FFFFFF&
Height = 1095
Left = 240
TabIndex = 0
Top = 90
Width = 3495
End
End
Attribute VB_Name = "form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Timer1_Timer()
' 显示系统时间
Label1.Caption = Format(Now, "hh:mm:ss")
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -