frmstart.frm

来自「本公司开发得大请油田人事管理系统c/s结构」· FRM 代码 · 共 75 行

FRM
75
字号
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "mscomctl.ocx"
Begin VB.Form frmStart 
   BackColor       =   &H80000014&
   BorderStyle     =   0  'None
   Caption         =   "Form1"
   ClientHeight    =   5745
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   8205
   BeginProperty Font 
      Name            =   "宋体"
      Size            =   9
      Charset         =   134
      Weight          =   400
      Underline       =   0   'False
      Italic          =   0   'False
      Strikethrough   =   0   'False
   EndProperty
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   5745
   ScaleWidth      =   8205
   ShowInTaskbar   =   0   'False
   StartUpPosition =   3  'Windows Default
   Begin MSComctlLib.ProgressBar ProgressBar4Init 
      Height          =   255
      Left            =   0
      TabIndex        =   0
      Top             =   5520
      Width           =   8325
      _ExtentX        =   14684
      _ExtentY        =   450
      _Version        =   393216
      Appearance      =   0
      Scrolling       =   1
   End
   Begin VB.Timer Timer4Start 
      Interval        =   1000
      Left            =   6975
      Top             =   240
   End
   Begin VB.Image Image4Start 
      Height          =   5520
      Left            =   0
      Stretch         =   -1  'True
      Top             =   0
      Width           =   8205
   End
End
Attribute VB_Name = "frmStart"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Public m_int4Timer As Integer

Private Sub Form_Load()
    Me.left = (Screen.Width - Me.Width) / 2
    Me.top = (Screen.Height - Me.Height) / 2
    Me.Image4Start.Picture = LoadPicture(App.Path & "\Res\InitPicture4CQ.jpg")
    Timer4Start.Interval = 1000
    m_int4Timer = 0
End Sub

'Private Sub Timer4Start_Timer()
'    If m_int4Timer = 1 Then
'        Unload Me
'    Else
'        m_int4Timer = m_int4Timer + 1
'    End If
'End Sub

⌨️ 快捷键说明

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