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

📄 frmstartup.frm

📁 simple supermarket for beginners
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmstartup 
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   3255
   ClientLeft      =   255
   ClientTop       =   1410
   ClientWidth     =   6915
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "frmstartup.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   Picture         =   "frmstartup.frx":000C
   ScaleHeight     =   3255
   ScaleWidth      =   6915
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Begin VB.Timer Timer1 
      Interval        =   1000
      Left            =   240
      Top             =   2280
   End
End
Attribute VB_Name = "frmstartup"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Option Explicit

Private Sub Form_KeyPress(KeyAscii As Integer)
    Unload Me
End Sub

Private Sub Form_Load()
Dim I As Integer
frmmain.Show
Do
    VistaProg1.Value = I
    I = I + 0.001
Loop Until VistaProg1.Value = 74

End Sub

Private Sub Timer1_Timer()
Timer1.Enabled = False

Dim I As Integer

I = 1
Do
    loadbar.Value = I
    I = I + 0.001
Loop Until loadbar.Value = 74

frmstartup.Show

End Sub

⌨️ 快捷键说明

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