main2form.frm

来自「商品交易管理数据库」· FRM 代码 · 共 69 行

FRM
69
字号
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 + =
减小字号Ctrl + -
显示快捷键?