form3.frm

来自「屏幕保护程序」· FRM 代码 · 共 53 行

FRM
53
字号
VERSION 5.00
Begin VB.Form Form1 
   Caption         =   "Form1"
   ClientHeight    =   5040
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   8085
   LinkTopic       =   "Form1"
   ScaleHeight     =   5040
   ScaleWidth      =   8085
   StartUpPosition =   3  '窗口缺省
   Begin VB.Timer Timer1 
      Interval        =   55
      Left            =   2160
      Top             =   3240
   End
   Begin VB.Label Label1 
      Caption         =   "屏幕保护"
      BeginProperty Font 
         Name            =   "幼圆"
         Size            =   42
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      ForeColor       =   &H00FFFF00&
      Height          =   975
      Left            =   2160
      TabIndex        =   0
      Top             =   1800
      Width           =   3495
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit

Private Sub Label1_Click()

End Sub

Private Sub Timer1_Timer()
Label1.Left = Label1.Left + 5 * 15
If Label1.Left >= Me.ScaleWidth Then
Label1.Left = -Label1.Width
End If
End Sub

⌨️ 快捷键说明

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