frmsplash.frm

来自「一个简单但功能强大的进货系统,同样适合用于毕业论文的设计」· FRM 代码 · 共 58 行

FRM
58
字号
VERSION 5.00
Begin VB.Form frmSplash 
   BorderStyle     =   0  'None
   ClientHeight    =   4155
   ClientLeft      =   210
   ClientTop       =   1365
   ClientWidth     =   7575
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   DrawStyle       =   6  'Inside Solid
   FillStyle       =   0  'Solid
   Icon            =   "frmSplash.frx":0000
   KeyPreview      =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   MousePointer    =   99  'Custom
   ScaleHeight     =   4155
   ScaleWidth      =   7575
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Interval        =   2000
      Left            =   3360
      Top             =   1920
   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 Sub Form_Click()
    Unload Me
End Sub

Private Sub Form_KeyPress(KeyAscii As Integer)

    Unload Me
    

    
End Sub

Private Sub Form_Load()
    Me.Picture = LoadPicture(App.Path & "\Image\accp_logo.bmp")
   


End Sub


Private Sub Timer1_Timer()
    Unload Me
End Sub

⌨️ 快捷键说明

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