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

📄 load.frm

📁 易能光盘管理系统 ,含源程序与毕业论文 可以提供源代码和文档
💻 FRM
字号:
VERSION 5.00
Begin VB.Form load 
   BorderStyle     =   0  'None
   Caption         =   "Form1"
   ClientHeight    =   4095
   ClientLeft      =   2835
   ClientTop       =   2370
   ClientWidth     =   6495
   FillColor       =   &H00FFFFFF&
   ForeColor       =   &H8000000E&
   LinkMode        =   1  'Source
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MouseIcon       =   "load.frx":0000
   MousePointer    =   99  'Custom
   ScaleHeight     =   4095
   ScaleWidth      =   6495
   ShowInTaskbar   =   0   'False
   Begin VB.Timer Timer1 
      Enabled         =   0   'False
      Interval        =   1000
      Left            =   720
      Top             =   2040
   End
   Begin VB.Label head 
      AutoSize        =   -1  'True
      BackColor       =   &H80000018&
      BackStyle       =   0  'Transparent
      Caption         =   "易能光盘管理系统 V1.5.1"
      BeginProperty Font 
         Name            =   "隶书"
         Size            =   15.75
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF8080&
      Height          =   315
      Left            =   1920
      TabIndex        =   2
      Top             =   480
      Width           =   4035
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "For Windows98/Me/2000/XP"
      Height          =   180
      Left            =   3480
      TabIndex        =   1
      Top             =   960
      Width           =   2160
   End
   Begin VB.Label Label2 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "版权所有(C)2000-2003 王迪"
      Height          =   180
      Left            =   240
      TabIndex        =   0
      Top             =   3600
      Width           =   2430
   End
   Begin VB.Shape Shape1 
      Height          =   4095
      Left            =   0
      Top             =   0
      Width           =   6495
   End
   Begin VB.Image Image1 
      Height          =   4095
      Left            =   0
      Picture         =   "load.frx":08CA
      Stretch         =   -1  'True
      Top             =   0
      Width           =   6495
   End
End
Attribute VB_Name = "load"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
   Dim i As Long
Option Explicit

Private Sub Form_Load()
  i = 0
  Me.Timer1.Enabled = True
End Sub

Private Sub Timer1_Timer()
  i = i + 1
If i = 3 Then
  Unload Me
  main.Show
End If
End Sub

⌨️ 快捷键说明

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