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

📄 frml.frm

📁 VB编制的图书管理系统,希望可给朋友们带来帮助.
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frml 
   ClientHeight    =   5640
   ClientLeft      =   3135
   ClientTop       =   1875
   ClientWidth     =   9705
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   Picture         =   "frml.frx":0000
   ScaleHeight     =   5640
   ScaleWidth      =   9705
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer2 
      Interval        =   80
      Left            =   4200
      Top             =   2640
   End
   Begin VB.Timer Timer1 
      Enabled         =   0   'False
      Interval        =   500
      Left            =   3960
      Top             =   2760
   End
   Begin VB.Label Label3 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "版权所有CopyWrite 2007.05-2008.08"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   10.5
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00C00000&
      Height          =   210
      Left            =   2880
      TabIndex        =   2
      Top             =   5280
      Width           =   3465
   End
   Begin VB.Label Label2 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "图书馆管理系统"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   42
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00C00000&
      Height          =   840
      Left            =   1560
      TabIndex        =   1
      Top             =   240
      Width           =   5985
   End
   Begin VB.Label Label1 
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "图书馆管理系统"
      BeginProperty Font 
         Name            =   "宋体"
         Size            =   42
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   -1  'True
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00808080&
      Height          =   840
      Left            =   1560
      TabIndex        =   0
      Top             =   240
      Width           =   5985
   End
   Begin VB.Image Image1 
      Height          =   5655
      Left            =   0
      Picture         =   "frml.frx":2969A
      Stretch         =   -1  'True
      Top             =   0
      Width           =   9735
   End
End
Attribute VB_Name = "frml"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
    Dim fangxiang As String

Private Sub Form_Load()
    fangxiang = "←↓"

End Sub

Private Sub Image1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
    Label1.Left = 1560: Label1.Top = 240
    Label2.Left = 1560: Label2.Top = 240
    Timer2.Enabled = False
    Timer1.Enabled = True
   
    frmLogin.Show 1
End Sub

Private Sub Timer1_Timer()
    
    Label2.ForeColor = QBColor(Rnd * 15)
End Sub

Private Sub Timer2_Timer()
    Call dong(Label1, Label2, Image1, fangxiang, 500)
End Sub

⌨️ 快捷键说明

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