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

📄 frmsplash.frm

📁 菜谱管理系统。比较简单的VB代码
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmSplash 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   4185
   ClientLeft      =   45
   ClientTop       =   45
   ClientWidth     =   6495
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   4185
   ScaleWidth      =   6495
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Visible         =   0   'False
   Begin VB.Timer Timer1 
      Interval        =   1500
      Left            =   5880
      Top             =   120
   End
   Begin VB.Frame Frame1 
      Height          =   4095
      Left            =   120
      TabIndex        =   0
      Top             =   0
      Width           =   6255
      Begin VB.Label lblDate 
         AutoSize        =   -1  'True
         Caption         =   "Copyright (c) 2003"
         Height          =   195
         Left            =   2520
         TabIndex        =   4
         Top             =   3360
         Width           =   1290
      End
      Begin VB.Label lblVersion 
         AutoSize        =   -1  'True
         Caption         =   "Version 0.0.0"
         BeginProperty Font 
            Name            =   "MS Sans Serif"
            Size            =   18
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   -1  'True
            Strikethrough   =   0   'False
         EndProperty
         Height          =   435
         Left            =   2025
         TabIndex        =   3
         Top             =   2760
         Width           =   2295
      End
      Begin VB.Label LblName 
         AutoSize        =   -1  'True
         Caption         =   "Digital Cook Book"
         BeginProperty Font 
            Name            =   "MS Sans Serif"
            Size            =   24
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00C00000&
         Height          =   555
         Left            =   1260
         TabIndex        =   2
         Top             =   1920
         Width           =   3825
      End
      Begin VB.Label lblCompany 
         Caption         =   "J-SOFT"
         BeginProperty Font 
            Name            =   "Arial"
            Size            =   48
            Charset         =   0
            Weight          =   700
            Underline       =   0   'False
            Italic          =   -1  'True
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00800000&
         Height          =   1095
         Left            =   1440
         TabIndex        =   1
         Top             =   480
         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
' Programed By James Letner (J-SOFT)

Private Sub Form_Load()
    
'Sets the current version in the version lable

    lblVersion.Caption = "Version " & App.Major & "." & App.Minor & "." & App.Revision
    


    
End Sub

Private Sub Timer1_Timer()
  
  'sets a timer to allow the splash screen to be displayed
  'and then sets up the rest of the program to run
  'timer is set at 1500 ms
       
        Set fMainForm = New frmMain
        Load fMainForm
        Unload frmSplash
        fMainForm.Show

End Sub


⌨️ 快捷键说明

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