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

📄 about.frm

📁 金卡(gold card),俗称84卡
💻 FRM
字号:
VERSION 4.00
Begin VB.Form Aboutbox 
   Caption         =   "About"
   ClientHeight    =   3075
   ClientLeft      =   4770
   ClientTop       =   3165
   ClientWidth     =   4530
   Height          =   3480
   Icon            =   "ABOUT.frx":0000
   Left            =   4710
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   3075
   ScaleWidth      =   4530
   Top             =   2820
   Width           =   4650
   Begin VB.Timer Timer1 
      Interval        =   1
      Left            =   3960
      Top             =   2160
   End
   Begin VB.Label Label2 
      Alignment       =   2  'Center
      Caption         =   "(C)1998,9 Lee Potter"
      Height          =   255
      Left            =   0
      TabIndex        =   2
      Top             =   1680
      Width           =   4575
   End
   Begin VB.Label Label1 
      Caption         =   $"ABOUT.frx":0442
      BeginProperty Font 
         name            =   "MS Sans Serif"
         charset         =   1
         weight          =   700
         size            =   12
         underline       =   0   'False
         italic          =   0   'False
         strikethrough   =   0   'False
      EndProperty
      Height          =   1575
      Left            =   840
      TabIndex        =   1
      Top             =   120
      Width           =   3015
   End
   Begin Threed.SSCommand Reset 
      Height          =   375
      HelpContextID   =   10
      Left            =   1560
      TabIndex        =   0
      Top             =   2640
      Width           =   1455
      _version        =   65536
      _extentx        =   2566
      _extenty        =   661
      _stockprops     =   78
      caption         =   "OK"
      forecolor       =   -2147483640
      BeginProperty font {FB8F0823-0164-101B-84ED-08002B2EC713} 
         name            =   "MS Sans Serif"
         charset         =   1
         weight          =   700
         size            =   8.25
         underline       =   0   'False
         italic          =   0   'False
         strikethrough   =   0   'False
      EndProperty
      font3d          =   2
   End
   Begin VB.Image Image1 
      Height          =   480
      Index           =   2
      Left            =   120
      Picture         =   "ABOUT.frx":04E3
      Top             =   2040
      Visible         =   0   'False
      Width           =   480
   End
   Begin VB.Image Image1 
      Height          =   480
      Index           =   1
      Left            =   120
      Picture         =   "ABOUT.frx":0925
      Top             =   2040
      Visible         =   0   'False
      Width           =   480
   End
   Begin VB.Image Image1 
      Height          =   480
      Index           =   0
      Left            =   120
      Picture         =   "ABOUT.frx":0D67
      Top             =   2040
      Visible         =   0   'False
      Width           =   480
   End
End
Attribute VB_Name = "Aboutbox"
Attribute VB_Creatable = False
Attribute VB_Exposed = False

Public Direct As Integer
Public FramID As Integer

Private Sub Form_Load()
   
   If Val(lotnr) <> 1100 Then
      MsgBox "Invalid Reader"
      End
   End If
   
   Left = (Screen.Width - Width) / 2   ' Center form horizontally.
   Top = (Screen.Height - Height) / 2  ' Center form vertically.
   FramID = 0
    
 
End Sub


Private Sub Reset_Click()
    Unload Me
End Sub

Private Sub Timer1_Timer()
    
    If Image1(0).Left <= 20 Then
         Direct = 1
    End If
    
    If Image1(0).Left >= 4000 Then
         Direct = 0
    End If
    
    If Direct = 1 Then
       Image1(0).Left = Image1(0).Left + 80
    Else
       Image1(0).Left = Image1(0).Left - 80
    End If
    
   
    Image1(1).Left = Image1(0).Left
    Image1(2).Left = Image1(0).Left
    
    Image1(0).Visible = False
    Image1(1).Visible = False
    Image1(2).Visible = False
    
    Image1(FramID).Visible = True
    FramID = FramID + 1
    If FramID >= 3 Then
      FramID = 0
    End If
End Sub


⌨️ 快捷键说明

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