📄 horse.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.MDIForm MDIForm1
BackColor = &H8000000C&
Caption = "赛马场查询系统"
ClientHeight = 5490
ClientLeft = 165
ClientTop = 450
ClientWidth = 9030
LinkTopic = "MDIForm1"
StartUpPosition = 2 '屏幕中心
WindowState = 2 'Maximized
Begin MSComctlLib.StatusBar StatusBar1
Align = 2 'Align Bottom
Height = 255
Left = 0
TabIndex = 0
Top = 5235
Width = 9030
_ExtentX = 15928
_ExtentY = 450
Style = 1
SimpleText = "正在查阅... ...基本情况表"
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 1
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
EndProperty
EndProperty
End
Begin VB.Menu file1
Caption = "文件"
Begin VB.Menu file2
Caption = "打开基本表"
End
Begin VB.Menu file3
Caption = "打开赛马情况表"
End
Begin VB.Menu line1
Caption = "-"
End
Begin VB.Menu exit1
Caption = "退出"
End
End
Begin VB.Menu help1
Caption = "帮助"
Begin VB.Menu about1
Caption = "关于"
End
End
End
Attribute VB_Name = "MDIForm1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub about1_Click()
Form5.Show
End Sub
Private Sub exit1_Click()
End
End Sub
Private Sub file2_Click()
Form1.Show
MDIForm1.StatusBar1.SimpleText = "正在查阅... ...基本情况表"
End Sub
Private Sub file3_Click()
Form2.Show
MDIForm1.StatusBar1.SimpleText = "正在查阅... ...赛马情况表"
End Sub
Private Sub MDIForm_Activate()
Unload Form3
Unload Form4
Unload Form5
End Sub
Private Sub MDIForm_Load()
Form1.Show
MDIForm1.StatusBar1.SimpleText = "正在查阅... ...基本情况表"
End Sub
Private Sub MDIForm_Resize()
On Error Resume Next
If MDIForm1.WindowState = 0 Then
MDIForm1.Height = 7180
MDIForm1.Width = 9950
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -