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

📄 loadform.frm

📁 VB编写的城市公交线路查询系统设计
💻 FRM
字号:
VERSION 5.00
Begin VB.Form loadform 
   BorderStyle     =   0  'None
   Caption         =   "Dialog Caption"
   ClientHeight    =   4155
   ClientLeft      =   3615
   ClientTop       =   2550
   ClientWidth     =   7680
   Icon            =   "loadform.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   4155
   ScaleWidth      =   7680
   ShowInTaskbar   =   0   'False
   Begin VB.Frame Frame1 
      BackColor       =   &H00FF8080&
      BorderStyle     =   0  'None
      Height          =   4155
      Left            =   0
      TabIndex        =   0
      Top             =   0
      Width           =   7665
      Begin VB.Timer Timer2 
         Interval        =   3000
         Left            =   840
         Top             =   480
      End
      Begin VB.CheckBox Check1 
         BackColor       =   &H00FF8080&
         Caption         =   "更新数据库(如果数据库已经被您更改过,请您选择此项,但这可能要花几分钟时间)"
         ForeColor       =   &H00000040&
         Height          =   255
         Left            =   360
         TabIndex        =   4
         Top             =   3360
         Width           =   7095
      End
      Begin VB.Timer Timer1 
         Enabled         =   0   'False
         Interval        =   1
         Left            =   360
         Top             =   720
      End
      Begin VB.Label lblCompanyProduct 
         AutoSize        =   -1  'True
         BackStyle       =   0  'Transparent
         Caption         =   "城市交通查询系统"
         BeginProperty Font 
            Name            =   "隶书"
            Size            =   24
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H0000FF00&
         Height          =   480
         Left            =   1440
         TabIndex        =   3
         Top             =   360
         Width           =   3960
      End
      Begin VB.Label lblLicenseTo 
         BackStyle       =   0  'Transparent
         Caption         =   "欢迎您进入"
         BeginProperty Font 
            Name            =   "隶书"
            Size            =   14.25
            Charset         =   134
            Weight          =   700
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00FFFF00&
         Height          =   255
         Left            =   120
         TabIndex        =   2
         Top             =   0
         Width           =   6855
      End
      Begin VB.Label lblstatus 
         BackStyle       =   0  'Transparent
         Caption         =   "Loading..."
         BeginProperty Font 
            Name            =   "宋体"
            Size            =   12
            Charset         =   0
            Weight          =   700
            Underline       =   0   'False
            Italic          =   -1  'True
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H0080FFFF&
         Height          =   315
         Left            =   120
         TabIndex        =   1
         Top             =   3720
         Width           =   6855
      End
      Begin VB.Image imgLogo 
         Height          =   2385
         Left            =   360
         Picture         =   "loadform.frx":1232
         Stretch         =   -1  'True
         Top             =   600
         Width           =   1815
      End
   End
End
Attribute VB_Name = "loadform"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Option Explicit
Dim bt As Boolean

Private Sub Check1_Click()
If Check1.Value = 0 Then
   Form1.IsBeginS = True
Else
   Form1.IsBeginS = False
End If
End Sub

Private Sub Form_Load()
bt = True
End Sub

Private Sub Timer1_Timer()
bt = False
If Check1.Value = 0 Then
   Form1.IsBeginS = True
Else
   Form1.IsBeginS = False
End If
Load Form1
Form1.Show
Timer1.Enabled = False
End Sub

Private Sub Timer2_Timer()
Timer1.Enabled = True
Timer2.Enabled = False
End Sub

⌨️ 快捷键说明

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