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

📄 frmlogo.frm

📁 VB进销存(纯净水行业)的源代码
💻 FRM
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form frmlogo 
   BorderStyle     =   0  'None
   Caption         =   "系统标志"
   ClientHeight    =   3480
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   5250
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "frmlogo.frx":0000
   ScaleHeight     =   3480
   ScaleWidth      =   5250
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Interval        =   30
      Left            =   1920
      Top             =   600
   End
   Begin MSComctlLib.ProgressBar ProgressBarload 
      Height          =   375
      Left            =   0
      TabIndex        =   0
      Top             =   3120
      Width           =   5295
      _ExtentX        =   9340
      _ExtentY        =   661
      _Version        =   393216
      Appearance      =   0
      Scrolling       =   1
   End
End
Attribute VB_Name = "frmlogo"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'Download by http://www.codefans.net
Dim opentime As Integer
Option Explicit
Private Sub Form_Load()
opentime = 0
End Sub

Private Sub Form_Unload(Cancel As Integer)
Set frmlogo = Nothing
End Sub

Private Sub Timer1_Timer()
opentime = opentime + 2
ProgressBarload.Value = opentime
If opentime > 99 Then
    Load frmlogin
    frmlogin.Show
    Unload Me
End If

End Sub

⌨️ 快捷键说明

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