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

📄 dcolor.frm

📁 一个较简单实用的学校学籍管理系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form dColor 
   BorderStyle     =   0  'None
   ClientHeight    =   3090
   ClientLeft      =   5340
   ClientTop       =   4380
   ClientWidth     =   4710
   Enabled         =   0   'False
   LinkTopic       =   "Form1"
   MDIChild        =   -1  'True
   ScaleHeight     =   3090
   ScaleWidth      =   4710
   ShowInTaskbar   =   0   'False
   Begin VB.TextBox Text1 
      Alignment       =   2  'Center
      Appearance      =   0  'Flat
      BackColor       =   &H80000001&
      BorderStyle     =   0  'None
      BeginProperty Font 
         Name            =   "华文隶书"
         Size            =   14.25
         Charset         =   134
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H0000FFFF&
      Height          =   390
      Left            =   0
      TabIndex        =   1
      Text            =   " 求聪中心小学 学生信息管理系统 0595-85189907"
      Top             =   2400
      Width           =   4695
   End
   Begin VB.Timer Timer1 
      Interval        =   40
      Left            =   0
      Top             =   1800
   End
   Begin VB.Image Image2 
      Height          =   900
      Left            =   1680
      Picture         =   "dColor.frx":0000
      Top             =   600
      Width           =   2850
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "欢  迎  进  入  [求  聪  中  心  小  学]  学  生  信  息  管  理  系  统"
      ForeColor       =   &H80000008&
      Height          =   420
      Left            =   0
      TabIndex        =   0
      Top             =   2640
      Width           =   4305
   End
   Begin VB.Image Image1 
      Height          =   1455
      Left            =   0
      Picture         =   "dColor.frx":1FAE
      Stretch         =   -1  'True
      Top             =   0
      Width           =   2415
   End
End
Attribute VB_Name = "dColor"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim i As Long

Private Sub Form_Load()
    Label1.ForeColor = &H8000000E
    Label1.FontSize = 12
    Label1.AutoSize = True
    i = Image2.Width
End Sub

Private Sub Form_Resize()
    Image1.Top = 0
    Image1.Left = 0
    Image1.Height = Me.Height
    Image1.Width = Me.Width
    Text1.Width = Me.Width
    Image2.Top = Me.Height - Image2.Height
    Text1.Top = Me.Height - Label1.Height - 100
    Image2.Left = Me.Width - Image2.Width
    Label1.Top = Me.Height - Label1.Height - 100
End Sub

Private Sub Timer1_Timer()
    i = i + 50
    Label1.Left = Me.Width - i
    If i > Me.Width + Label1.Width Then
        i = Image2.Width
    End If
End Sub

⌨️ 快捷键说明

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