frmrel.frm

来自「TMS(小型票务管理VB+Access)」· FRM 代码 · 共 82 行

FRM
82
字号
VERSION 5.00
Begin VB.Form frmrel 
   BorderStyle     =   1  'Fixed Single
   Caption         =   "Release notes"
   ClientHeight    =   3600
   ClientLeft      =   45
   ClientTop       =   330
   ClientWidth     =   5520
   Icon            =   "frmrel.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MDIChild        =   -1  'True
   MinButton       =   0   'False
   ScaleHeight     =   3600
   ScaleWidth      =   5520
   Begin VB.CommandButton Command1 
      BackColor       =   &H00FFFFFF&
      Caption         =   "&Close"
      Height          =   375
      Left            =   2100
      Style           =   1  'Graphical
      TabIndex        =   1
      Top             =   3000
      Width           =   1575
   End
   Begin VB.Timer Timer1 
      Interval        =   10
      Left            =   1440
      Top             =   1080
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   $"frmrel.frx":0442
      BeginProperty Font 
         Name            =   "Frutiger 45 Light"
         Size            =   14.25
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FFFFFF&
      Height          =   2775
      Left            =   240
      TabIndex        =   0
      Top             =   240
      Width           =   4875
   End
End
Attribute VB_Name = "frmrel"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Unload Me
End Sub

Private Sub Command1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Command1.FontBold = True
End Sub

Private Sub Form_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Command1.FontBold = False
End Sub

Private Sub Label1_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single)
Command1.FontBold = False
End Sub

Private Sub Timer1_Timer()
Dim i
For i = 1 To 600
 frmrel.BackColor = vbRed
 frmrel.BackColor = vbGreen
 frmrel.BackColor = vbYellow
 frmrel.BackColor = vbBlue
Next i
Timer1.Enabled = False
End Sub

⌨️ 快捷键说明

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