【VB开源代码栏目提醒】:文章导读:在新的一年中,各位网友都进入紧张的学习或是工作阶段。网学会员整理了VB开源代码-Ex8_1.frm的相关内容供大家参考,祝大家在新的一年里工作和学习顺利!
VERSION 5.00
Begin VB.Form Ex8_1
Caption = "显示系统时间"
ClientHeight = 2400
ClientLeft = 60
ClientTop = 450
ClientWidth = 3885
LinkTopic = "Form1"
ScaleHeight = 2400
ScaleWidth = 3885
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "刷新"
Height = 375
Left = 1080
TabIndex = 1
Top = 1560
Width = 1215
End
Begin VB.Label Label1
Caption = "Label1"
Height = 375
Left = 600
TabIndex = 0
Top = 720
Width = 2535
End
End
Attribute
VB_Name = "Ex8_1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Label1.Refresh '刷新标签显示内容
Label1.Caption = Now
End Sub
Private Sub Form_Load()
Label1.Caption = Now '显示
系统时间
End Sub