📄 闪烁的文本.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00000000&
Caption = "Form1"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Interval = 50
Left = 1740
Top = 1380
End
Begin VB.Label Label1
BackColor = &H00000000&
Caption = "你还爱我吗?"
BeginProperty Font
Name = "宋体"
Size = 18
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 435
Left = 1163
TabIndex = 0
Top = 1140
Width = 2355
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim i As Boolean
Dim c As Long
Private Sub Timer1_Timer()
Static chg As Boolean
If c > 255 Then chg = True
If c < 10 Then chg = False
If chg Then
c = c - 10
Else
c = c + 10
End If
Debug.Print c
Label1.ForeColor = RGB(c, c, c)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -