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

📄 frm_main.frm

📁 学校财务管理系统课程设计VB+SQL2
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frm_main 
   BackColor       =   &H00C0C0C0&
   Caption         =   "Form1"
   ClientHeight    =   6000
   ClientLeft      =   5430
   ClientTop       =   2970
   ClientWidth     =   8715
   LinkTopic       =   "Form1"
   ScaleHeight     =   6000
   ScaleWidth      =   8715
   Begin VB.Frame Frame1 
      BackColor       =   &H00C0C0C0&
      Height          =   4095
      Left            =   0
      TabIndex        =   1
      Top             =   1080
      Width           =   8655
      Begin VB.CommandButton Command2 
         Caption         =   "系统简介"
         Height          =   495
         Left            =   4920
         TabIndex        =   15
         Top             =   120
         Width           =   1335
      End
      Begin VB.CommandButton Command3 
         Caption         =   "退出"
         Height          =   495
         Left            =   7680
         TabIndex        =   14
         Top             =   120
         Width           =   975
      End
      Begin VB.CommandButton Command1 
         Caption         =   "修改密码"
         Height          =   495
         Left            =   6360
         TabIndex        =   11
         Top             =   120
         Width           =   1215
      End
      Begin VB.Frame Frame3 
         BackColor       =   &H00C0C0C0&
         Caption         =   "固定资产管理"
         Height          =   2895
         Left            =   1440
         TabIndex        =   5
         Top             =   1080
         Width           =   2895
         Begin VB.CommandButton Command16 
            Caption         =   "固定资产记录删除"
            Height          =   495
            Left            =   360
            TabIndex        =   9
            Top             =   2160
            Width           =   2055
         End
         Begin VB.CommandButton Command15 
            Caption         =   "固定资产查询"
            Height          =   495
            Left            =   360
            TabIndex        =   8
            Top             =   1560
            Width           =   2055
         End
         Begin VB.CommandButton Command14 
            Caption         =   "修改固定资产记录"
            Height          =   495
            Left            =   360
            TabIndex        =   7
            Top             =   960
            Width           =   2055
         End
         Begin VB.CommandButton Command13 
            Caption         =   "增加固定资产记录"
            Height          =   495
            Left            =   360
            TabIndex        =   6
            Top             =   360
            Width           =   2055
         End
      End
      Begin VB.Frame Frame2 
         BackColor       =   &H00C0C0C0&
         Caption         =   "工资管理"
         Height          =   2895
         Left            =   4320
         TabIndex        =   2
         Top             =   1080
         Width           =   3015
         Begin VB.CommandButton Command12 
            Caption         =   "查询工资记录"
            Height          =   495
            Left            =   480
            TabIndex        =   4
            Top             =   1560
            Width           =   2055
         End
         Begin VB.CommandButton Command9 
            Caption         =   "增加工资记录"
            Height          =   495
            Left            =   480
            TabIndex        =   3
            Top             =   840
            Width           =   2055
         End
      End
      Begin VB.Line Line2 
         X1              =   4560
         X2              =   8640
         Y1              =   720
         Y2              =   720
      End
   End
   Begin VB.Timer Timer2 
      Interval        =   1000
      Left            =   0
      Top             =   0
   End
   Begin VB.Timer Timer1 
      Interval        =   1000
      Left            =   0
      Top             =   0
   End
   Begin VB.Label Label3 
      BackColor       =   &H00C0C0C0&
      Caption         =   "姓名:李超  学号:200522030109"
      Height          =   255
      Left            =   2520
      TabIndex        =   13
      Top             =   5640
      Width           =   3135
   End
   Begin VB.Label Label2 
      BackColor       =   &H00C0C0C0&
      Caption         =   "太原科技大学华科学院计算机科学与技术052201H"
      Height          =   255
      Left            =   2040
      TabIndex        =   12
      Top             =   5400
      Width           =   4095
   End
   Begin VB.Line Line1 
      X1              =   0
      X2              =   8760
      Y1              =   720
      Y2              =   720
   End
   Begin VB.Label LblTime 
      Appearance      =   0  'Flat
      BackColor       =   &H80000005&
      BackStyle       =   0  'Transparent
      ForeColor       =   &H00000040&
      Height          =   255
      Left            =   0
      TabIndex        =   10
      Top             =   840
      Width           =   8535
   End
   Begin VB.Label Label1 
      BackColor       =   &H00C0C0C0&
      Caption         =   "学校财务管理系统"
      BeginProperty Font 
         Name            =   "隶书"
         Size            =   36
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   735
      Left            =   1560
      TabIndex        =   0
      Top             =   120
      Width           =   5655
   End
End
Attribute VB_Name = "frm_main"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub Command1_Click()
frm_pass.Show 1
End Sub

Private Sub Command12_Click()
pay_list.Show 1
End Sub

Private Sub Command13_Click()
AddFixed.Show 1
End Sub

Private Sub Command14_Click()
frm_fixlistMod.Show 1
End Sub

Private Sub Command15_Click()
frm_fixList.Show 1
End Sub

Private Sub Command16_Click()
frm_fixlistDel.Show 1
End Sub

Private Sub Command2_Click()
frm_view.Show 1

End Sub

Private Sub Command3_Click()
End
End Sub

Private Sub Command9_Click()
AddPay.Show 1
End Sub

Private Sub Timer1_Timer()
LblTime.Caption = "   欢迎使用本系统!   " + Format(Now, "yyyy/mm/dd") _
+ "    " + Format(Now, "dddd") + "     " + Format(Now, "hh:mm:ss AM/PM")
End Sub

Private Sub Form_Unload(Cancel As Integer)
  If MsgBox("真的要退出本系统吗?", vbOKCancel + vbDefaultButton2, "退出系统") = vbCancel Then Cancel = 1
End Sub

⌨️ 快捷键说明

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