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

📄 欢迎.frm

📁 利用VB对公司人事管理系统的部分功能的描述
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "人事管理系统"
   ClientHeight    =   6015
   ClientLeft      =   60
   ClientTop       =   420
   ClientWidth     =   8295
   LinkTopic       =   "Form1"
   ScaleHeight     =   6015
   ScaleWidth      =   8295
   StartUpPosition =   3  '窗口缺省
   Begin VB.PictureBox Picture1 
      Height          =   6015
      Left            =   0
      Picture         =   "欢迎.frx":0000
      ScaleHeight     =   5955
      ScaleWidth      =   8235
      TabIndex        =   0
      Top             =   0
      Width           =   8295
      Begin VB.Label Label2 
         BackStyle       =   0  'Transparent
         Caption         =   "退 出"
         BeginProperty Font 
            Name            =   "Arial"
            Size            =   14.25
            Charset         =   0
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   375
         Left            =   5160
         TabIndex        =   2
         Top             =   4560
         Width           =   735
      End
      Begin VB.Label Label1 
         BackStyle       =   0  'Transparent
         Caption         =   "使 用"
         BeginProperty Font 
            Name            =   "Arial"
            Size            =   14.25
            Charset         =   0
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   375
         Left            =   2640
         TabIndex        =   1
         Top             =   4560
         Width           =   855
      End
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Label1_Click()
  Unload Me
  Form2.Show
End Sub

Private Sub Label2_Click()
   Dim i As Integer
   i = MsgBox("确定要退出本系统吗?", vbInformation + vbOKCancel + vbApplicationModal, "提示")
       If i = 2 Then
           Unload Me
           Form1.Show
         Else
           End
         End If
End Sub

⌨️ 快捷键说明

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