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

📄 rl_logining.frm

📁 图书管理软件,基本功能已具备
💻 FRM
字号:
VERSION 5.00
Begin VB.Form RL_Logining 
   BackColor       =   &H80000004&
   BorderStyle     =   0  'None
   Caption         =   "Form1"
   ClientHeight    =   3600
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   4800
   LinkTopic       =   "Form1"
   LockControls    =   -1  'True
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3600
   ScaleWidth      =   4800
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Interval        =   2500
      Left            =   3555
      Top             =   1740
   End
   Begin VB.Image Image1 
      Height          =   3600
      Left            =   0
      Picture         =   "RL_Logining.frx":0000
      Top             =   0
      Width           =   4800
   End
End
Attribute VB_Name = "RL_Logining"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'***************************************************************
'*公司名:华夏学院晨光网络公司
'*系统名:红杉图书信息管理系统
'*程序名:闪屏
'*程序ID:RL_Logining
'*版本:1.0.0
'*最后修改时间:2005/4/1
'*修改人:cuitianlong
'*
'*-------------------------------------------------------------
'*  [年月日]        [制造者]
'*-------------------------------------------------------------
'*  2005/4/1        cuitianlong
'*
'***************************************************************
Option Explicit

'***************************************************************
'*  窗体加载
'*
'*  [参数]
'*      无
'*  [返回]
'*      无
'***************************************************************
Private Sub Form_Load()
    On Error GoTo Form_Load
    
    '---将图象设置与窗体一样大
    Image1.Top = 0
    Image1.Left = 0
    Image1.Height = Me.ScaleHeight
    Image1.Width = Me.ScaleWidth
    
    Exit Sub
Form_Load:
    MsgBox "Form_Load()---出错", vbCritical, "错误"
End Sub

'***************************************************************
'*  窗体退出 [QueryUnload]
'*
'*  [参数]
'*      1:系统参数
'*      2:系统参数
'*  [返回]
'*      无
'***************************************************************
Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
    On Error GoTo Form_QueryUnload
    
    RL_Login.Show '登陆画面显示
    
    Exit Sub
Form_QueryUnload:
    MsgBox "Form_QueryUnload()---出错", vbCritical, "错误"
End Sub

'***************************************************************
'*  Timer1_Timer
'*
'*  [参数]
'*      无
'*  [返回]
'*      无
'***************************************************************
Private Sub Timer1_Timer()
    On Error GoTo Timer1_Timer
    
    Unload Me '关闭窗体
    
    Exit Sub
Timer1_Timer:
    MsgBox "Timer1_Timer()---出错", vbCritical, "错误"
End Sub

⌨️ 快捷键说明

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