📄 例3.frm
字号:
VERSION 5.00
Begin VB.Form FRM7_4_2
Caption = "Form1"
ClientHeight = 2385
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
BeginProperty Font
Name = "宋体"
Size = 14.25
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
LinkTopic = "Form1"
ScaleHeight = 2385
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.ComboBox Combo1
Height = 405
Left = 1080
TabIndex = 1
Text = "Combo1"
Top = 1320
Width = 2055
End
Begin VB.Label Label1
Caption = "04年河南省高考分数线查询"
Height = 495
Left = 360
TabIndex = 0
Top = 360
Width = 3855
End
End
Attribute VB_Name = "FRM7_4_2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Combo1_CLICK()
Select Case Combo1.Text
Case "本1"
MsgBox "重点大学--589分"
Case "本2"
MsgBox "一般本科--532分"
Case "本3"
MsgBox "二级学院--507分"
Case "专1"
MsgBox "专科一批--412分"
End Select
End Sub
Private Sub Form_Load()
Combo1.AddItem "本1"
Combo1.AddItem "本2"
Combo1.AddItem "本3"
Combo1.AddItem "专1"
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -