📄 anxueh.frm
字号:
VERSION 5.00
Begin VB.Form Anxueh
Caption = "Form1"
ClientHeight = 5115
ClientLeft = 60
ClientTop = 450
ClientWidth = 8085
LinkTopic = "Form1"
ScaleHeight = 5115
ScaleWidth = 8085
StartUpPosition = 3 'Windows Default
Begin VB.Frame Frame1
Caption = "按学号查询论文成绩"
Height = 4335
Left = 480
TabIndex = 0
Top = 360
Width = 6975
Begin VB.CommandButton Tijiao
Caption = "提交"
Height = 855
Left = 4800
TabIndex = 3
Top = 1200
Width = 1455
End
Begin VB.TextBox Text
Height = 975
Left = 1800
TabIndex = 2
Top = 1200
Width = 2295
End
Begin VB.Label Label1
Caption = "输入学生学号"
Height = 735
Left = 360
TabIndex = 1
Top = 1440
Width = 1695
End
End
End
Attribute VB_Name = "Anxueh"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Tijiao_Click()
If Text.Text = "" Then
MsgBox "没有输入查询条件!", vbOKOnly + vbInformation, ""
Exit Sub
End If
frmShoCJ.Show
End Sub
Private Sub Form_Load()
Dim X0 As Long
Dim Y0 As Long
'让窗体居中
X0 = Screen.Width
Y0 = Screen.Height
X0 = (X0 - Me.Width) / 2
Y0 = (Y0 - Me.Height) / 2
Me.Move X0, Y0
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -