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

📄 frmsplash.frm

📁 本公司开发得大请油田人事管理系统c/s结构
💻 FRM
字号:
VERSION 5.00
Object = "{28D47522-CF84-11D1-834C-00A0249F0C28}#1.0#0"; "gif89.dll"
Begin VB.Form frmSplash 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   885
   ClientLeft      =   255
   ClientTop       =   45
   ClientWidth     =   4470
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   BeginProperty Font 
      Name            =   "宋体"
      Size            =   9
      Charset         =   134
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MDIChild        =   -1  'True
   MinButton       =   0   'False
   ScaleHeight     =   885
   ScaleWidth      =   4470
   ShowInTaskbar   =   0   'False
   Begin VB.Timer Timer1 
      Interval        =   1000
      Left            =   4005
      Top             =   120
   End
   Begin GIF89LibCtl.Gif89a Gif4Play 
      Height          =   435
      Left            =   240
      OleObjectBlob   =   "frmSplash.frx":0000
      TabIndex        =   1
      Top             =   120
      Width           =   1035
   End
   Begin VB.Label Label1 
      Caption         =   "正在汇总数据,请稍候......"
      Height          =   180
      Left            =   1620
      TabIndex        =   0
      Top             =   360
      Width           =   2250
   End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private i As Integer

Private Sub Form_Load()
    Me.Move (Screen.Width - Me.Width) / 2, (Screen.Height - Me.Height) / 2
    Gif4Play.FileName = App.Path & "\res\book.gif"
    Gif4Play.Play
    i = 1
End Sub

Private Sub Timer1_Timer()
    If i = 1 Then
        i = i + 1
    End If
End Sub

⌨️ 快捷键说明

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