📄 frmmain.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.MDIForm frmMain
BackColor = &H8000000C&
Caption = "明星档案查询系统"
ClientHeight = 7185
ClientLeft = 3360
ClientTop = 2310
ClientWidth = 9210
Icon = "frmMain.frx":0000
LinkTopic = "MDIForm1"
ScrollBars = 0 'False
WindowState = 2 'Maximized
Begin MSComctlLib.StatusBar sbStatusBar
Align = 2 'Align Bottom
Height = 270
Left = 0
TabIndex = 0
Top = 6915
Width = 9210
_ExtentX = 16245
_ExtentY = 476
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 3
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
AutoSize = 1
Object.Width = 10583
Text = "Status"
TextSave = "Status"
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 6
AutoSize = 2
TextSave = "2006-5-22"
EndProperty
BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 5
AutoSize = 2
TextSave = "21:57"
EndProperty
EndProperty
End
Begin VB.Menu xtgl
Caption = "系统管理(&S)"
Begin VB.Menu cusiMenu
Caption = "用户信息管理(&S)"
End
End
Begin VB.Menu mxdagl
Caption = "明星档案管理(&M)"
Begin VB.Menu stsiMenu
Caption = "明星档案查询与维护(&M)"
End
End
Begin VB.Menu HP
Caption = "帮助(&H)"
Begin VB.Menu help
Caption = "帮助内容(&H)"
Shortcut = {F1}
End
Begin VB.Menu sp1
Caption = "-"
End
Begin VB.Menu gy
Caption = "关于(&A)"
End
End
Begin VB.Menu exit
Caption = "退出(&Q)"
End
End
Attribute VB_Name = "frmMain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cusiMenu_Click()
frmcusi.Show
End Sub
Private Sub exit_Click()
End
End Sub
Private Sub gy_Click()
Load frmAbout
frmAbout.Show
End Sub
Private Sub help_Click()
Shell "hh.exe " & App.Path & "\help.chm", vbNormalFocus
End Sub
Private Sub MDIForm_Load()
dColor.Show
If Not UserName = "admin" Then
xtgl.Enabled = False
End If
End Sub
Private Sub MDIForm_Resize()
If Me.Height > 1100 Then
dColor.Height = Me.Height - 1100
End If
If Me.Width > 180 Then
dColor.Width = Me.Width - 180
End If
End Sub
Private Sub stsiMenu_Click()
frmstsi.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -