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

📄 start.frm

📁 thi si a source code of VIP library. helful in chatting
💻 FRM
字号:
VERSION 5.00
Object = "{831FDD16-0C5C-11D2-A9FC-0000F8754DA1}#2.0#0"; "MSCOMCTL.OCX"
Begin VB.Form Start 
   Appearance      =   0  'Flat
   BackColor       =   &H00000000&
   BorderStyle     =   0  'None
   ClientHeight    =   6315
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   7290
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   6315
   ScaleWidth      =   7290
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Begin VB.Timer Timer1 
      Interval        =   60
      Left            =   0
      Top             =   0
   End
   Begin MSComctlLib.ProgressBar bar 
      Height          =   255
      Left            =   2400
      TabIndex        =   0
      Top             =   5520
      Width           =   4335
      _ExtentX        =   7646
      _ExtentY        =   450
      _Version        =   393216
      Appearance      =   0
      Scrolling       =   1
   End
   Begin VB.Label Label3 
      Alignment       =   2  'Center
      BackColor       =   &H00000000&
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   13.5
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF00FF&
      Height          =   495
      Left            =   1080
      TabIndex        =   3
      Top             =   1080
      Width           =   5055
   End
   Begin VB.Label Label2 
      BackColor       =   &H00000000&
      Caption         =   "Welcome to Vipin's Library Management System"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   12
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H000000FF&
      Height          =   1335
      Left            =   720
      TabIndex        =   2
      Top             =   480
      Width           =   6375
   End
   Begin VB.Label Label1 
      BackColor       =   &H80000007&
      Caption         =   "Initializing Settings...."
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   9.75
         Charset         =   0
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FF0000&
      Height          =   375
      Left            =   120
      TabIndex        =   1
      Top             =   5520
      Width           =   2655
   End
End
Attribute VB_Name = "Start"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'This library project is created by Vipin Panicker. E-Mail: itsvipin@hotmail.com

Private Sub Form_Load()
frmLogin.Data1.DatabaseName = App.Path & "\initialsc.mdb"
'frmLogin.Data1.RecordSource =
Label3.Caption = frmLogin.Data1.Recordset.Fields("school Name")
End Sub

Private Sub Timer1_Timer()
bar.Value = bar.Value + 7
    If bar.Value = 98 Then
       bar.Value = 100
    End If
If bar.Value = 100 Then
    If Timer1.Interval >= 1 Then
        Unload Start
        Load frmLogin
        frmLogin.Show
    End If
End If
End Sub

⌨️ 快捷键说明

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