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

📄 form修饰.frm

📁 自己做的简单的工资查询系统
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form修饰 
   BorderStyle     =   0  'None
   Caption         =   "Form1"
   ClientHeight    =   2910
   ClientLeft      =   0
   ClientTop       =   0
   ClientWidth     =   9795
   LinkTopic       =   "Form1"
   Picture         =   "Form修饰.frx":0000
   ScaleHeight     =   2910
   ScaleWidth      =   9795
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  'CenterScreen
   Begin VB.Timer Timer2 
      Interval        =   3000
      Left            =   1440
      Top             =   2280
   End
   Begin VB.Timer Timer1 
      Interval        =   200
      Left            =   3600
      Top             =   1680
   End
   Begin VB.Label Label2 
      BackStyle       =   0  'Transparent
      Caption         =   "稍等进入……"
      Height          =   375
      Left            =   5760
      TabIndex        =   1
      Top             =   2160
      Width           =   1575
   End
   Begin VB.Label Label1 
      BackStyle       =   0  'Transparent
      Caption         =   "欢迎使用工资管理系统"
      BeginProperty Font 
         Name            =   "楷体_GB2312"
         Size            =   21.75
         Charset         =   134
         Weight          =   700
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   615
      Left            =   120
      TabIndex        =   0
      Top             =   480
      Width           =   5415
   End
End
Attribute VB_Name = "Form修饰"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Sub mymove()
Label1.Move Label1.Left + 50, Label1.Top
If Label1.Top > Form修饰.Height Then Label1.Top = 0
End Sub

Private Sub Timer1_Timer()
Call mymove
End Sub

Private Sub Timer2_Timer()
Unload Me
Form登录.Show
End Sub

⌨️ 快捷键说明

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