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

📄 frmgmain.frm

📁 财务管理系统的基本功能的实现
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmgmain 
   Caption         =   "固定资产"
   ClientHeight    =   5250
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   5415
   LinkTopic       =   "Form1"
   Picture         =   "frmgmain.frx":0000
   ScaleHeight     =   5250
   ScaleWidth      =   5415
   StartUpPosition =   3  '窗口缺省
   Begin VB.CommandButton Command1 
      Caption         =   "退出"
      Height          =   495
      Left            =   2040
      TabIndex        =   0
      Top             =   4320
      Width           =   1215
   End
   Begin VB.Label Label4 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "删除固定资产记录"
      Height          =   180
      Left            =   3120
      TabIndex        =   4
      Top             =   3480
      Width           =   1440
   End
   Begin VB.Label Label3 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "查询固定资产记录"
      Height          =   180
      Left            =   720
      TabIndex        =   3
      Top             =   3480
      Width           =   1440
   End
   Begin VB.Label Label2 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "修改固定资产记录"
      Height          =   180
      Left            =   3120
      TabIndex        =   2
      Top             =   1680
      Width           =   1440
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "增加固定资产记录"
      Height          =   180
      Left            =   720
      TabIndex        =   1
      Top             =   1680
      Width           =   1440
   End
   Begin VB.Image Image4 
      Height          =   960
      Left            =   3360
      Picture         =   "frmgmain.frx":576BA
      Top             =   2280
      Width           =   960
   End
   Begin VB.Image Image3 
      Height          =   960
      Left            =   960
      Picture         =   "frmgmain.frx":58D04
      Top             =   2280
      Width           =   960
   End
   Begin VB.Image Image2 
      Height          =   960
      Left            =   3360
      Picture         =   "frmgmain.frx":5A34E
      Top             =   720
      Width           =   960
   End
   Begin VB.Image Image1 
      Height          =   960
      Left            =   960
      Picture         =   "frmgmain.frx":5B998
      Top             =   600
      Width           =   960
   End
End
Attribute VB_Name = "frmgmain"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub

Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image1.BorderStyle = 0
Image2.BorderStyle = 0
Image3.BorderStyle = 0
Image4.BorderStyle = 0

End Sub

Private Sub Image1_Click()
frmzg.Show
End Sub

Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image1.BorderStyle = 1
End Sub

Private Sub Image2_Click()
fixgz.Show
End Sub

Private Sub Image2_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image2.BorderStyle = 1
End Sub

Private Sub Image3_Click()
frmsearch.Show
End Sub

Private Sub Image3_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image3.BorderStyle = 1
End Sub

Private Sub Image4_Click()
delgongzi.Show
End Sub

Private Sub Image4_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Image4.BorderStyle = 1
End Sub

⌨️ 快捷键说明

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