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

📄 dcolor.frm

📁 学生信息管理系统的设计,包含与数据库的通信接口和密码等.
💻 FRM
字号:
VERSION 5.00
Begin VB.Form dColor 
   BorderStyle     =   0  'None
   ClientHeight    =   3090
   ClientLeft      =   5340
   ClientTop       =   4380
   ClientWidth     =   4680
   Enabled         =   0   'False
   LinkTopic       =   "Form1"
   MDIChild        =   -1  'True
   ScaleHeight     =   3090
   ScaleWidth      =   4680
   ShowInTaskbar   =   0   'False
   Begin VB.Timer Timer1 
      Interval        =   40
      Left            =   0
      Top             =   1800
   End
   Begin VB.Image Image2 
      Height          =   1365
      Left            =   3240
      Picture         =   "dColor.frx":0000
      Top             =   0
      Width           =   1380
   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":625E
      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
    Image2.Top = Me.Height - Image2.Height
    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 + -