📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 11070
ClientLeft = 60
ClientTop = 390
ClientWidth = 15240
LinkTopic = "Form1"
ScaleHeight = 11070
ScaleWidth = 15240
StartUpPosition = 3 '窗口缺省
Begin VB.Timer Timer1
Interval = 200
Left = 4800
Top = 7080
End
Begin VB.CommandButton Command1
BackColor = &H0080C0FF&
Caption = "我们与你们同在"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 700
Underline = -1 'True
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 1095
Left = 13080
MaskColor = &H000000FF&
Picture = "Form1.frx":0000
Style = 1 'Graphical
TabIndex = 0
Top = 9720
UseMaskColor = -1 'True
Width = 2055
End
Begin VB.Label Label1
BackColor = &H00000000&
BackStyle = 0 'Transparent
Caption = "心系汶川"
BeginProperty Font
Name = "华文新魏"
Size = 72
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H0000FFFF&
Height = 6735
Left = 2400
TabIndex = 1
Top = 840
Width = 1575
End
Begin VB.Image Image1
Height = 11040
Left = 0
Picture = "Form1.frx":B0AD2
Stretch = -1 'True
Top = 0
Width = 15465
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public r As Integer
Private Sub Command1_Click()
Form1.Visible = False
Form2.Visible = True
Unload Me
End Sub
Private Sub Timer1_Timer()
Label1.ForeColor = RGB(255 * Rnd, 255 * Rnd, 255 * Rnd)
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -