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

📄 frmabout.frm

📁 本软件是人事管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmAbout 
   BackColor       =   &H00E0E0E0&
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "关于"
   ClientHeight    =   3780
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   4590
   BeginProperty Font 
      Name            =   "宋体"
      Size            =   9
      Charset         =   0
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   Icon            =   "frmAbout.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "frmAbout.frx":000C
   ScaleHeight     =   3780
   ScaleWidth      =   4590
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Begin VB.Frame Frame1 
      BackColor       =   &H00E0E0E0&
      Caption         =   "版本信息"
      Height          =   2175
      Left            =   60
      TabIndex        =   1
      Top             =   1080
      Width           =   4455
      Begin VB.Label lblInfo 
         BackColor       =   &H00C0C0FF&
         BackStyle       =   0  'Transparent
         Height          =   735
         Index           =   1
         Left            =   360
         TabIndex        =   3
         Top             =   1320
         Width           =   3735
      End
      Begin VB.Label lblInfo 
         BackStyle       =   0  'Transparent
         Height          =   975
         Index           =   0
         Left            =   360
         TabIndex        =   2
         Top             =   240
         Width           =   3735
      End
   End
   Begin VB.CommandButton cmdExit 
      BackColor       =   &H00C0FFC0&
      Caption         =   "关闭"
      Height          =   350
      Left            =   3420
      Style           =   1  'Graphical
      TabIndex        =   0
      Top             =   3360
      Width           =   1095
   End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdExit_Click()
    Unload Me
    frmInfo.Enabled = True
End Sub

Private Sub Form_Load()
    Set Me.Icon = frmInfo.Icon
    lblInfo(0).Caption = "程序名称:    " & App.Title & vbTab & vbTab & vbCrLf & "版本号:      " & _
    vbTab & App.Major & "." & App.Minor & vbCrLf & "设计者:      " & vbTab & "章强" & _
    vbCrLf & "Email:       " & vbTab & "Berboy@163.com" & vbCrLf & "制作时间:    " & _
    vbTab & "2004-05-20"
    lblInfo(1).Caption = "此版本为测试版,数据库结构设计简单,程序代码基本进行过优化处理,能完成基本的人事录入及查询功能!"
End Sub

⌨️ 快捷键说明

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