📄 main2form.frm
字号:
VERSION 5.00
Begin VB.Form Form2
BorderStyle = 1 'Fixed Single
Caption = "系统主窗体"
ClientHeight = 3195
ClientLeft = 150
ClientTop = 720
ClientWidth = 4680
LinkTopic = "Form2"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.Menu spjy
Caption = "商品交易"
Index = 1
End
Begin VB.Menu spxx
Caption = "商品信息"
Index = 1
End
Begin VB.Menu ghkh
Caption = "供货客户"
Index = 1
End
Begin VB.Menu whmm
Caption = "维护密码"
Index = 1
End
Begin VB.Menu gbct
Caption = "关闭窗体"
End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub gbct_Click() '关闭窗体
Unload Me
End Sub
Private Sub ghkh_Click(Index As Integer) '供货客户
Form5.Show
End Sub
Private Sub spjy_Click(Index As Integer) '商品交易
Form3.Show
End Sub
Private Sub spxx_Click(Index As Integer) ' 商品信息
Form4.Show
End Sub
Private Sub whmm_Click(Index As Integer) '维护密码
Form6.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -