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

📄 form2.frm

📁 1) 用户管理功能:用户权限、用户添加、修改及登录 2) 药品名称管理:药品名称的添加、修改和删除 3) 药品价格管理:价格初始
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form2 
   Caption         =   "医院药品进销存系统"
   ClientHeight    =   3345
   ClientLeft      =   3945
   ClientTop       =   2490
   ClientWidth     =   7680
   LinkTopic       =   "Form2"
   ScaleHeight     =   3345
   ScaleWidth      =   7680
   Begin VB.Timer Timer1 
      Interval        =   150
      Left            =   960
      Top             =   2400
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "欢迎使用医院药品进销存系统!"
      BeginProperty Font 
         Name            =   "楷体_GB2312"
         Size            =   12
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FF00&
      Height          =   255
      Left            =   3120
      TabIndex        =   0
      Top             =   3000
      Width           =   3375
   End
   Begin VB.Image Image2 
      Height          =   5760
      Left            =   0
      Picture         =   "Form2.frx":0000
      Top             =   0
      Width           =   7680
   End
   Begin VB.Image Image1 
      Height          =   4935
      Left            =   120
      Top             =   120
      Width           =   7215
   End
   Begin VB.Menu operation 
      Caption         =   "基本操作(&A)"
      Begin VB.Menu a 
         Caption         =   "-"
      End
      Begin VB.Menu ruku 
         Caption         =   "药品入库"
      End
      Begin VB.Menu aa 
         Caption         =   "-"
      End
      Begin VB.Menu chuku 
         Caption         =   "药品出库"
      End
      Begin VB.Menu aaaa 
         Caption         =   "-"
      End
      Begin VB.Menu buymanger 
         Caption         =   "药品采购信息管理"
         Begin VB.Menu gy 
            Caption         =   "-"
         End
         Begin VB.Menu buyresearch 
            Caption         =   "采购纪录查询"
         End
         Begin VB.Menu yy 
            Caption         =   "-"
         End
         Begin VB.Menu edit 
            Caption         =   "录入采购记录"
         End
      End
      Begin VB.Menu ji 
         Caption         =   "-"
      End
      Begin VB.Menu passtime 
         Caption         =   "过期药品处理"
      End
   End
   Begin VB.Menu search 
      Caption         =   "查询(&S)"
      Begin VB.Menu b 
         Caption         =   "-"
      End
      Begin VB.Menu kucunchaxun 
         Caption         =   "药品库存查询"
      End
      Begin VB.Menu bbb 
         Caption         =   "-"
      End
      Begin VB.Menu fenleisearch 
         Caption         =   "药品分类信息查询"
      End
      Begin VB.Menu bb 
         Caption         =   "-"
      End
      Begin VB.Menu supply 
         Caption         =   "供应商查询"
      End
      Begin VB.Menu c 
         Caption         =   "-"
      End
      Begin VB.Menu shuoming 
         Caption         =   "用药说明查询"
      End
   End
   Begin VB.Menu systermsafty 
      Caption         =   "系统安全(&D)"
      Begin VB.Menu nnnnm 
         Caption         =   "-"
      End
      Begin VB.Menu administer 
         Caption         =   "添加用户"
      End
      Begin VB.Menu d 
         Caption         =   "-"
      End
      Begin VB.Menu change 
         Caption         =   "用户更改密码"
      End
      Begin VB.Menu opiu 
         Caption         =   "-"
      End
      Begin VB.Menu exit 
         Caption         =   "退出系统"
      End
   End
   Begin VB.Menu out 
      Caption         =   "输出报表(&F)"
      Begin VB.Menu caigouout 
         Caption         =   "输出采购记录报表"
      End
      Begin VB.Menu uio 
         Caption         =   "-"
      End
      Begin VB.Menu chukuout 
         Caption         =   "输出出库记录报表"
      End
      Begin VB.Menu hlop 
         Caption         =   "-"
      End
      Begin VB.Menu kucunout 
         Caption         =   "输出库存记录报表"
      End
   End
   Begin VB.Menu beifen 
      Caption         =   "数据备份与恢复(&G)"
   End
End
Attribute VB_Name = "Form2"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False


Private Sub ruku_Click()
Form3.Show
End Sub

Private Sub administer_Click()
Form10.Show
End Sub

Private Sub beifen_Click()
Form12.Show
End Sub

Private Sub change_Click()
Form14.Show
End Sub
Private Sub fenleisearch_Click()
Form6.Show
End Sub

Private Sub caigouout_Click()    '输出采购报表
DataReport3.Show
End Sub

Private Sub exit_Click()
End
End Sub

Private Sub kucunchaxun_Click()
Form7.Show
End Sub

Private Sub kucunout_Click()   ' 输出库存报表
DataReport2.Show
End Sub

Private Sub chuku_Click()
Form4.Show
End Sub

Private Sub passtime_Click()
Form11.Show
End Sub

Private Sub edit_Click()
Form13.Show
End Sub

Private Sub chukuout_Click()    '输出出库报表
DataReport1.Show
End Sub

Private Sub shuoming_Click()
Form8.Show
End Sub

Private Sub supply_Click()
Form9.Show
End Sub

Private Sub buyresearch_Click()
Form5.Show
End Sub

Private Sub Timer1_Timer()
    If Label1.Left <= -100 Then
        Label1.Left = 8080
     End If
     Label1.Left = Label1.Left - 100
End Sub

⌨️ 快捷键说明

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