📄 &.frm
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.MDIForm MDIfrm
BackColor = &H00FFFFFF&
Caption = "华辉电器批发查询系统"
ClientHeight = 6405
ClientLeft = 225
ClientTop = 525
ClientWidth = 11340
Icon = "&.frx":0000
LinkTopic = "MDIForm1"
Picture = "&.frx":0A02
StartUpPosition = 2 '屏幕中心
WindowState = 2 'Maximized
Begin MSComctlLib.ImageList ImageList1
Left = 1800
Top = 1200
_ExtentX = 1005
_ExtentY = 1005
BackColor = -2147483643
ImageWidth = 16
ImageHeight = 16
MaskColor = 12632256
_Version = 393216
BeginProperty Images {2C247F25-8591-11D1-B16A-00C0F0283628}
NumListImages = 4
BeginProperty ListImage1 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "&.frx":1404
Key = ""
EndProperty
BeginProperty ListImage2 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "&.frx":17DC6
Key = ""
EndProperty
BeginProperty ListImage3 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "&.frx":2E788
Key = ""
EndProperty
BeginProperty ListImage4 {2C247F27-8591-11D1-B16A-00C0F0283628}
Picture = "&.frx":4514A
Key = ""
EndProperty
EndProperty
End
Begin MSComctlLib.Toolbar Toolbar1
Align = 1 'Align Top
Height = 360
Left = 0
TabIndex = 1
Top = 0
Width = 11340
_ExtentX = 20003
_ExtentY = 635
ButtonWidth = 2090
ButtonHeight = 582
Appearance = 1
Style = 1
TextAlignment = 1
ImageList = "ImageList1"
_Version = 393216
BeginProperty Buttons {66833FE8-8583-11D1-B16A-00C0F0283628}
NumButtons = 5
BeginProperty Button1 {66833FEA-8583-11D1-B16A-00C0F0283628}
Style = 3
EndProperty
BeginProperty Button2 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "数据操作"
ImageIndex = 3
EndProperty
BeginProperty Button3 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "计算器"
ImageIndex = 2
EndProperty
BeginProperty Button4 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "记事本"
ImageIndex = 4
EndProperty
BeginProperty Button5 {66833FEA-8583-11D1-B16A-00C0F0283628}
Caption = "退出"
ImageIndex = 1
EndProperty
EndProperty
MouseIcon = "&.frx":5BB0C
End
Begin MSComctlLib.StatusBar StatusBar1
Align = 2 'Align Bottom
Height = 300
Left = 0
TabIndex = 0
Top = 6105
Width = 11340
_ExtentX = 20003
_ExtentY = 529
_Version = 393216
BeginProperty Panels {8E3867A5-8586-11D1-B16A-00C0F0283628}
NumPanels = 5
BeginProperty Panel1 {8E3867AB-8586-11D1-B16A-00C0F0283628}
AutoSize = 1
Object.Width = 7268
MinWidth = 7056
Picture = "&.frx":5C51E
EndProperty
BeginProperty Panel2 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 2
TextSave = "NUM"
EndProperty
BeginProperty Panel3 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 1
TextSave = "CAPS"
EndProperty
BeginProperty Panel4 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Object.Width = 4410
MinWidth = 4410
Picture = "&.frx":71690
EndProperty
BeginProperty Panel5 {8E3867AB-8586-11D1-B16A-00C0F0283628}
Style = 6
Picture = "&.frx":86802
TextSave = "2009-4-5"
EndProperty
EndProperty
BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
Name = "Tahoma"
Size = 8.25
Charset = 0
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
End
Begin VB.Menu munDacz
Caption = "系统操作(&N)"
Begin VB.Menu munJCDA
Caption = "基础数据"
End
End
Begin VB.Menu munSjgl
Caption = "数据管理(&S)"
Begin VB.Menu munSJBF
Caption = "数据备份与还原"
End
End
Begin VB.Menu munTc
Caption = "退出(&X)"
End
End
Attribute VB_Name = "MDIfrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub MDIForm_Load()
Me.Picture = LoadPicture(App.Path & "\bg\bg.jpg")
End Sub
Private Sub MDIForm_Unload(Cancel As Integer)
If MsgBox("确认要退出系统吗?", vbInformation + vbYesNo, "提示") = vbYes Then
End
Else
Cancel = -1
End If
End Sub
Private Sub munWNCX_Click()
DoEvents
Load frmWNCX
End Sub
Private Sub munSJBF_Click()
DoEvents
frmbeifen.Show 1
End Sub
Private Sub munTc_Click()
If MsgBox("确认要退出系统吗?", vbInformation + vbYesNo, "提示") = vbYes Then
End
Else
Exit Sub
End If
End Sub
Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
Select Case Button.Index
Case Is = 2
munWNCX_Click
Case Is = 3
Shell ("calc.exe"), vbNormalFocus
Case Is = 4
Shell ("NOTEPAD.EXE"), vbNormalFocus
Case Is = 5
munTc_Click
End Select
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -