frmabout.frm

来自「学生信息管理系统.一个简单的学生信息管理系统,可以做些日常学生信息的管理.」· FRM 代码 · 共 63 行

FRM
63
字号
VERSION 5.00
Begin VB.Form frmAbout 
   Caption         =   "关于"
   ClientHeight    =   3060
   ClientLeft      =   345
   ClientTop       =   420
   ClientWidth     =   4560
   LinkTopic       =   "Form1"
   ScaleHeight     =   3060
   ScaleWidth      =   4560
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Left            =   1800
      Top             =   0
   End
   Begin VB.Frame Frame1 
      Caption         =   "毕业设计:"
      Height          =   2655
      Left            =   120
      TabIndex        =   0
      Top             =   240
      Width           =   4215
      Begin VB.Frame Frame2 
         Caption         =   "作者:"
         Height          =   2055
         Left            =   1920
         TabIndex        =   1
         Top             =   360
         Width           =   2055
         Begin VB.Label Label1 
            Caption         =   $"frmAbout.frx":0000
            Height          =   1095
            Left            =   240
            TabIndex        =   2
            Top             =   480
            Width           =   1575
         End
      End
      Begin VB.Image Image1 
         Height          =   1875
         Left            =   240
         Picture         =   "frmAbout.frx":0095
         Top             =   480
         Width           =   1500
      End
   End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Form_Load()
Timer1.Interval = 100
End Sub
Private Sub Timer1_Timer()
    Static LR As Boolean, iColor As Integer
    iColor = iColor + 1
    Label1.ForeColor = GetIColor(iColor)
    If iColor = MAXP Then iColor = 1
End Sub

⌨️ 快捷键说明

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