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

📄 frmfrash.frm

📁 用Visual basic6开发的人事信息管理系统,数据库采用的是Sql Server2000
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmFrash 
   Appearance      =   0  'Flat
   BackColor       =   &H80000005&
   ClientHeight    =   4230
   ClientLeft      =   60
   ClientTop       =   60
   ClientWidth     =   5970
   ControlBox      =   0   'False
   LinkTopic       =   "Form1"
   Picture         =   "frmFrash.frx":0000
   ScaleHeight     =   4230
   ScaleWidth      =   5970
   StartUpPosition =   2  '屏幕中心
   Begin VB.Timer Timer1 
      Interval        =   60000
      Left            =   0
      Top             =   0
   End
   Begin VB.Label lblWarning 
      BackStyle       =   0  'Transparent
      Caption         =   "警告:任何单位或个人未经许可不得拷贝及使用。"
      ForeColor       =   &H00FF0000&
      Height          =   195
      Left            =   0
      TabIndex        =   1
      Top             =   0
      Width           =   3855
   End
   Begin VB.Label lblVersion 
      Alignment       =   1  'Right Justify
      AutoSize        =   -1  'True
      BackStyle       =   0  'Transparent
      Caption         =   "版本"
      Height          =   180
      Left            =   5175
      TabIndex        =   0
      Top             =   3000
      Width           =   360
   End
End
Attribute VB_Name = "frmFrash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim uIndex As Integer
Option Explicit

Private Sub Form_Click()
    Unload Me
End Sub

Private Sub Form_KeyPress(KeyAscii As Integer)
    Unload Me
End Sub

Private Sub Form_Load()
    lblVersion.Caption = "版本 " & App.Major & "." & App.Minor & "." & App.Revision
End Sub

Private Sub imgLogon_Click()
    Unload Me
End Sub

Private Sub lblCompany_Click()
    Unload Me

End Sub

Private Sub lblCopyright_Click()
    Unload Me

End Sub

Private Sub lblLicenseTo_Click()
    Unload Me

End Sub

Private Sub lblPlatform_Click()
    Unload Me

End Sub

Private Sub lblProductName_Click()
    Unload Me

End Sub

Private Sub lblVersion_Click()
    Unload Me

End Sub

Private Sub lblWarning_Click()
    Unload Me

End Sub

Private Sub SSFrame1_Click()
    Unload Me
End Sub

Private Sub Timer1_Timer()
    Timer1.Enabled = False
    uIndex = uIndex + 1
    Unload Me
End Sub


⌨️ 快捷键说明

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