📄 anxueyuan.frm
字号:
VERSION 5.00
Begin VB.Form AnXy
Caption = "Form1"
ClientHeight = 4680
ClientLeft = 60
ClientTop = 450
ClientWidth = 7485
LinkTopic = "Form1"
ScaleHeight = 4680
ScaleWidth = 7485
StartUpPosition = 3 'Windows Default
Begin VB.Frame Frame1
Caption = "按学院查询"
Height = 3855
Left = 480
TabIndex = 0
Top = 240
Width = 6375
Begin VB.CommandButton commit
Caption = "查询"
Height = 615
Left = 4920
TabIndex = 3
Top = 1320
Width = 1095
End
Begin VB.TextBox Text
Height = 855
Left = 1800
TabIndex = 2
Top = 1200
Width = 2655
End
Begin VB.Label Label1
Caption = "请输入学院名称"
Height = 615
Left = 360
TabIndex = 1
Top = 1440
Width = 1695
End
End
End
Attribute VB_Name = "AnXy"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub commit_Click()
If Text.Text = "" Then
MsgBox "没有输入查询条件!", vbOKOnly + vbInformation, ""
Exit Sub
End If
frmShowChengji.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 + -