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

📄 frmsplash.frm

📁 储蓄管理演示系统.rar 用Visual Basic语言为某储蓄所建立一个“储蓄管理系统”
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmSplash 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   3915
   ClientLeft      =   4050
   ClientTop       =   3660
   ClientWidth     =   7380
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "frmSplash.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3915
   ScaleWidth      =   7380
   ShowInTaskbar   =   0   'False
   Begin VB.Frame FrameMain 
      Height          =   3570
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   7200
      Begin VB.Timer Timer1 
         Interval        =   30
         Left            =   0
         Top             =   120
      End
      Begin VB.Line lnProcess 
         BorderColor     =   &H00C00000&
         BorderWidth     =   5
         X1              =   2520
         X2              =   2760
         Y1              =   1680
         Y2              =   1680
      End
      Begin VB.Label lblDataEnv 
         AutoSize        =   -1  'True
         Caption         =   "数据环境:Access 2000"
         BeginProperty Font 
            Name            =   "Arial"
            Size            =   15.75
            Charset         =   0
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   360
         Left            =   2280
         TabIndex        =   4
         Top             =   2400
         Width           =   3450
      End
      Begin VB.Image imgLogo 
         Height          =   825
         Left            =   840
         Picture         =   "frmSplash.frx":000C
         Stretch         =   -1  'True
         Top             =   1680
         Width           =   855
      End
      Begin VB.Label lblPlatform 
         Alignment       =   1  'Right Justify
         AutoSize        =   -1  'True
         Caption         =   "开发平台:Visual Basic 6.0"
         BeginProperty Font 
            Name            =   "Arial"
            Size            =   15.75
            Charset         =   0
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   360
         Left            =   2280
         TabIndex        =   2
         Top             =   1920
         Width           =   4095
      End
      Begin VB.Label lblLicenseTo 
         Alignment       =   1  'Right Justify
         BeginProperty Font 
            Name            =   "Arial"
            Size            =   8.25
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   255
         Left            =   120
         TabIndex        =   1
         Top             =   240
         Width           =   6855
      End
      Begin VB.Label lblProductName 
         Alignment       =   2  'Center
         AutoSize        =   -1  'True
         Caption         =   "储蓄管理演示系统"
         BeginProperty Font 
            Name            =   "方正舒体"
            Size            =   24
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H000000FF&
         Height          =   510
         Left            =   1560
         TabIndex        =   3
         Top             =   720
         Width           =   3960
      End
   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 FrameMain_Click()
Unload Me
    Set fMain = New frmMain
    Load fMain
    fMain.Show        '打开主窗体
End Sub


Private Sub Timer1_Timer()
  lnProcess.X2 = lnProcess.X2 + 20
  If (lnProcess.X2 - lnProcess.X1) > 3500 Then
      Unload Me
      
    Set fMain = New frmMain
    Load fMain
    fMain.Show        '打开主窗体
  End If
End Sub

⌨️ 快捷键说明

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