flash.frm

来自「计算机CAD图纸管理和预览」· FRM 代码 · 共 182 行

FRM
182
字号
VERSION 5.00
Begin VB.Form frmSplash 
   BackColor       =   &H00FFFFFF&
   BorderStyle     =   3  'Fixed Dialog
   ClientHeight    =   3570
   ClientLeft      =   255
   ClientTop       =   1410
   ClientWidth     =   5970
   ClipControls    =   0   'False
   ControlBox      =   0   'False
   Icon            =   "flash.frx":0000
   KeyPreview      =   -1  'True
   LinkTopic       =   "Form2"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3570
   ScaleWidth      =   5970
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Frame Frame1 
      BackColor       =   &H00FFFFFF&
      Height          =   3435
      Left            =   120
      TabIndex        =   0
      Top             =   0
      Width           =   5760
      Begin VB.Timer Timer1 
         Interval        =   1000
         Left            =   5040
         Top             =   720
      End
      Begin VB.Label Label1 
         BackColor       =   &H00FFFFFF&
         BackStyle       =   0  'Transparent
         Caption         =   "For Our Earth And Children"
         BeginProperty Font 
            Name            =   "RomanC"
            Size            =   9
            Charset         =   0
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         Height          =   375
         Left            =   1800
         TabIndex        =   7
         Top             =   2040
         Width           =   3615
      End
      Begin VB.Label lblWarning 
         BackColor       =   &H00FFFFFF&
         BackStyle       =   0  'Transparent
         Caption         =   "警告:未经授权,不得翻录拷贝技术部门图纸资料"
         Height          =   315
         Left            =   240
         TabIndex        =   1
         Top             =   2760
         Width           =   4005
      End
      Begin VB.Label lblPlatform 
         Alignment       =   1  'Right Justify
         AutoSize        =   -1  'True
         BackColor       =   &H00FFFFFF&
         BackStyle       =   0  'Transparent
         Caption         =   "平台 Win98/2000/XP"
         BeginProperty Font 
            Name            =   "黑体"
            Size            =   12
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00000000&
         Height          =   240
         Left            =   2025
         TabIndex        =   5
         Top             =   1440
         Width           =   2160
      End
      Begin VB.Label lblProductName 
         AutoSize        =   -1  'True
         BackColor       =   &H00FFFFFF&
         BackStyle       =   0  'Transparent
         Caption         =   "产品"
         BeginProperty Font 
            Name            =   "黑体"
            Size            =   24
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00000000&
         Height          =   495
         Left            =   1560
         TabIndex        =   6
         Top             =   360
         Width           =   960
      End
      Begin VB.Image Image1 
         Height          =   2370
         Left            =   120
         Picture         =   "flash.frx":0442
         Top             =   120
         Width           =   1725
      End
      Begin VB.Label lblCompany 
         BackColor       =   &H00FFFFFF&
         BackStyle       =   0  'Transparent
         Caption         =   "无锡小天鹅中央空调有限公司 技术部 2006年"
         Height          =   255
         Left            =   1440
         TabIndex        =   2
         Top             =   3120
         Width           =   3855
      End
      Begin VB.Label lblCopyright 
         BackColor       =   &H00FFFFFF&
         BackStyle       =   0  'Transparent
         Caption         =   "版权所有(C)"
         Height          =   255
         Left            =   240
         TabIndex        =   3
         Top             =   3120
         Width           =   2655
      End
      Begin VB.Label lblVersion 
         Alignment       =   1  'Right Justify
         AutoSize        =   -1  'True
         BackColor       =   &H00FFFFFF&
         BackStyle       =   0  'Transparent
         Caption         =   "版本"
         BeginProperty Font 
            Name            =   "黑体"
            Size            =   12
            Charset         =   134
            Weight          =   400
            Underline       =   0   'False
            Italic          =   0   'False
            Strikethrough   =   0   'False
         EndProperty
         ForeColor       =   &H00000000&
         Height          =   240
         Left            =   2760
         TabIndex        =   4
         Top             =   1080
         Width           =   480
      End
   End
End
Attribute VB_Name = "frmSplash"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Option Explicit

'Private Sub Form_KeyPress(KeyAscii As Integer)
'    登录.Show
'    'Unload Me
'End Sub

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

End Sub

Private Sub Frame1_Click()
    DlgLogin.Show
    
End Sub

Private Sub Timer1_Timer()
   DlgLogin.Show
End Sub

⌨️ 快捷键说明

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