📄 mdiform1.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.MDIForm MDIForm1
BackColor = &H8000000C&
Caption = "固定资产管理系统"
ClientHeight = 3090
ClientLeft = 165
ClientTop = 1155
ClientWidth = 4680
Icon = "MDIForm1.frx":0000
LinkTopic = "MDIForm1"
Picture = "MDIForm1.frx":044A
StartUpPosition = 3 '窗口缺省
WindowState = 2 'Maximized
Begin MSComctlLib.Toolbar Toolbar1
Align = 1 'Align Top
Height = 795
Left = 0
TabIndex = 0
Top = 0
Width = 4680
_ExtentX = 8255
_ExtentY = 1402
ButtonWidth = 1455
ButtonHeight = 1349
Appearance = 1
Style = 1
ImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 5
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "数据编辑"
Key = "sjbj"
ImageIndex = 1
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "数据查询"
Key = "sjcx"
ImageIndex = 2
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "更改密码"
Key = "ggmm"
ImageIndex = 3
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "关于"
Key = "gy"
ImageIndex = 5
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "退出"
Key = "tc"
ImageIndex = 6
EndProperty
EndProperty
End
Begin MSComctlLib.ImageList ImageList1
Left = 3120
Top = 1920
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 32
ImageHeight = 32
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 6
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MDIForm1.frx":22102
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MDIForm1.frx":22554
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MDIForm1.frx":229A6
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MDIForm1.frx":22DF8
Key = ""
EndProperty
BeginProperty ListImage5 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MDIForm1.frx":2324A
Key = ""
EndProperty
BeginProperty ListImage6 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "MDIForm1.frx":2369C
Key = ""
EndProperty
EndProperty
End
Begin VB.Menu sjgl
Caption = "资产录入"
Begin VB.Menu sjbj
Caption = "资产登记"
End
Begin VB.Menu sjcx
Caption = "资产查询"
End
End
Begin VB.Menu zczy
Caption = "资产转移"
End
Begin VB.Menu yhgl
Caption = "用户管理"
Begin VB.Menu ggmm
Caption = "更改密码"
End
End
Begin VB.Menu sjdy
Caption = "数据打印"
End
Begin VB.Menu gycx
Caption = "关于程序"
End
Begin VB.Menu ck
Caption = "窗口"
Begin VB.Menu dc
Caption = "叠层"
End
Begin VB.Menu cz
Caption = "垂直"
End
Begin VB.Menu pp
Caption = "平铺"
End
End
Begin VB.Menu tc
Caption = "退出"
End
End
Attribute VB_Name = "MDIForm1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cz_Click()
MDIForm1.Arrange 2
End Sub
Private Sub dc_Click()
MDIForm1.Arrange 0
End Sub
Private Sub ggmm_Click()
Form7.Show
End Sub
Private Sub gycx_Click()
frmAbout.Show
End Sub
Private Sub pp_Click()
MDIForm1.Arrange 1
End Sub
Private Sub sjbj_Click()
Form3.Show
End Sub
Private Sub sjcx_Click()
Form5.Show
End Sub
Private Sub sjdy_Click()
Form4.Show
End Sub
Private Sub tc_Click()
Unload Me
End Sub
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Select Case Button.Index
Case 1
Form3.Show
Case 2
Form5.Show
Case 3
Form7.Show
Case 4
frmAbout.Show
Case 5
Unload Me
Case 6
Unload Me
End Select
End Sub
Private Sub zczy_Click()
Form2.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -