vb 在名称为Form1的窗体上,画1个名称为Label1的标签,其标题为"等级考试",能根据标题内容自动调整标签的
vb 在名称为Form1的窗体上,画1个名称为Label1的标签,其标题为"等级考试",能根据标题内容自动调整标签的
日期:2011-09-07 20:18:32 人气:2
Private Sub Form_Load()
Timer1.Interval = 1000
Label1.AutoSize = True
Label1.Caption = "等级考试"
End Sub
Private Sub Timer1_Timer()
Label1.Visible = Not Label1.Visible
End Sub