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

📄 frminfo.frm

📁 人事管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frminfo 
   BorderStyle     =   0  'None
   Caption         =   "Form1"
   ClientHeight    =   2925
   ClientLeft      =   5985
   ClientTop       =   990
   ClientWidth     =   4650
   LinkTopic       =   "Form1"
   ScaleHeight     =   2925
   ScaleWidth      =   4650
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Frame Frame1 
      Height          =   2850
      Left            =   105
      TabIndex        =   0
      Top             =   0
      Width           =   4425
      Begin VB.Timer Timer1 
         Left            =   3150
         Top             =   1155
      End
      Begin VB.Label Label2 
         Caption         =   "大学人事管理系统"
         Height          =   540
         Left            =   945
         TabIndex        =   2
         Top             =   1050
         Width           =   1590
      End
      Begin VB.Label Label1 
         Caption         =   "Designed by bill"
         Height          =   435
         Left            =   2520
         TabIndex        =   1
         Top             =   2205
         Width           =   1800
      End
   End
End
Attribute VB_Name = "frminfo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Form_Load()
frmmain.Visible = False
frmmain.Enabled = False
Timer1.Interval = 1000
Me.Visible = True
Me.SetFocus
End Sub

Private Sub Timer1_Timer()
frmmain.Enabled = True
frmmain.Visible = True
frmmain.SetFocus
Unload Me
End Sub

⌨️ 快捷键说明

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