⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainfrm.frm

📁 这是本人利用vb+access 开发的一个二库存进销存系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form MainFrm 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "北京南风欧芬爱尔日用化学品有限公司"
   ClientHeight    =   7245
   ClientLeft      =   150
   ClientTop       =   720
   ClientWidth     =   10965
   Icon            =   "MainFrm.frx":0000
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Palette         =   "MainFrm.frx":0ECA
   Picture         =   "MainFrm.frx":8C31
   ScaleHeight     =   7245
   ScaleWidth      =   10965
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  '窗口缺省
   Begin VB.Timer Timer1 
      Interval        =   1000
      Left            =   7560
      Top             =   6600
   End
   Begin VB.Label Label3 
      Alignment       =   2  'Center
      BackColor       =   &H00C0C0FF&
      BackStyle       =   0  'Transparent
      BeginProperty Font 
         Name            =   "黑体"
         Size            =   12
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0080FFFF&
      Height          =   495
      Left            =   8040
      TabIndex        =   0
      Top             =   6720
      Width           =   2535
   End
   Begin VB.Menu GLimulu 
      Caption         =   "管理项目 &F"
      Begin VB.Menu work 
         Caption         =   "产品列表"
      End
      Begin VB.Menu password 
         Caption         =   "品牌列表"
      End
   End
   Begin VB.Menu ruku 
      Caption         =   "入库管理 &I"
   End
   Begin VB.Menu chuku 
      Caption         =   "出库管理 &O"
   End
   Begin VB.Menu System 
      Caption         =   "系统管理 &B"
      Begin VB.Menu Mima 
         Caption         =   "密码更新"
      End
      Begin VB.Menu Beifen 
         Caption         =   "数据备份"
      End
   End
   Begin VB.Menu kucun 
      Caption         =   "库存查询 &K"
   End
   Begin VB.Menu search 
      Caption         =   "票据查询 &S"
      Begin VB.Menu Sin 
         Caption         =   "入库单查询"
      End
      Begin VB.Menu Sto 
         Caption         =   "出库单查询"
      End
   End
   Begin VB.Menu logout 
      Caption         =   "退出管理 &B"
   End
   Begin VB.Menu about 
      Caption         =   "关于系统 &A"
   End
End
Attribute VB_Name = "MainFrm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub about_Click()
frmAbout.Show
End Sub

Private Sub beifen_Click()
Form5.Show
End Sub

Private Sub chuku_Click()
Form6.Show
End Sub


Private Sub Sin_Click()
Form9.Show
End Sub

Private Sub Sto_Click()
Form10.Show
End Sub

Private Sub Timer1_Timer()
Label3.Caption = "" + Str(Now) + ""
End Sub


Private Sub kucun_Click()
Form8.Show
End Sub

Private Sub logout_Click()
Dim msg As String
 msg = MsgBox("是否确认退出?", 1 + 32)
 If msg = 1 Then
Unload Me
Else
Exit Sub
End If
End Sub

Private Sub Mima_Click()
Form7.Show
End Sub

Private Sub password_Click()
Form2.Show
End Sub

Private Sub ruku_Click()
Form4.Show
End Sub


Private Sub work_Click()
Form3.Show
End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -