📄 form1.frm
字号:
VERSION 5.00
Begin VB.Form Form1
BackColor = &H00FFFFC0&
Caption = "大赛评分系统"
ClientHeight = 7785
ClientLeft = 60
ClientTop = 345
ClientWidth = 8940
LinkTopic = "Form1"
Picture = "Form1.frx":0000
ScaleHeight = 11115
ScaleWidth = 15240
StartUpPosition = 3 '窗口缺省
WindowState = 2 'Maximized
Begin VB.CommandButton Command1
BackColor = &H00C0FFC0&
Caption = "进入"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 5040
Style = 1 'Graphical
TabIndex = 1
Top = 8520
Width = 1335
End
Begin VB.CommandButton Command3
BackColor = &H00C0FFC0&
Caption = "退出"
BeginProperty Font
Name = "宋体"
Size = 15
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 615
Left = 8760
MaskColor = &H00C0C0FF&
Style = 1 'Graphical
TabIndex = 0
Top = 8400
Width = 1335
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim words As String
Private Sub Command1_Click() '进入评委的输入
Form1.Hide
Form2.Show
End Sub
Private Sub Command3_Click() '结束运行
End
End Sub
Private Sub Form_Click() '打印大赛评分的字
words = "大赛评分系统"
Form1.FontName = "黑体"
Form1.FontSize = 110
For i = 0 To 80
Form1.CurrentX = 1000 + i * 5
Form1.CurrentY = 2000 - i * 3
Form1.ForeColor = RGB(80, 255 - i, 250)
Print words
Next i
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -