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

📄 about.frm

📁 一个简单的俄罗斯方块的游戏
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmAbout 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "About VBtris32"
   ClientHeight    =   1830
   ClientLeft      =   3645
   ClientTop       =   3885
   ClientWidth     =   4545
   ControlBox      =   0   'False
   Icon            =   "About.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   PaletteMode     =   1  'UseZOrder
   ScaleHeight     =   1830
   ScaleWidth      =   4545
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton cmdOk 
      Caption         =   "OK"
      Height          =   300
      Left            =   1440
      TabIndex        =   4
      Top             =   1440
      Width           =   1095
   End
   Begin VB.Label Label4 
      Caption         =   "Created by Eric Griffith"
      Height          =   255
      Left            =   960
      TabIndex        =   3
      Top             =   1080
      Width           =   4815
   End
   Begin VB.Label Label3 
      Caption         =   "Version 1.00"
      Height          =   255
      Left            =   960
      TabIndex        =   2
      Top             =   840
      Width           =   4815
   End
   Begin VB.Label Label2 
      Caption         =   "A Visual Basic Clone of a Popular Puzzle Game"
      Height          =   255
      Left            =   960
      TabIndex        =   1
      Top             =   480
      Width           =   4935
   End
   Begin VB.Label Label1 
      Caption         =   "VBtris32"
      BeginProperty Font 
         Name            =   "MS Sans Serif"
         Size            =   12
         Charset         =   0
         Weight          =   400
         Underline       =   0   'False
         Italic          =   0   'False
         Strikethrough   =   0   'False
      EndProperty
      Height          =   255
      Left            =   960
      TabIndex        =   0
      Top             =   120
      Width           =   4815
   End
   Begin VB.Image Image1 
      Height          =   480
      Left            =   240
      Picture         =   "About.frx":030A
      Top             =   476
      Width           =   480
   End
End
Attribute VB_Name = "frmAbout"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

Private Sub cmdOk_Click()
'Hide the form
frmAbout.Hide

End Sub

Private Sub Form_Load()
'Position the form
frmAbout.Left = (Screen.Width - frmAbout.Width) / 2
frmAbout.Top = (Screen.Height - frmAbout.Height) / 3
'Center the OK command button on the form
cmdOk.Left = (frmAbout.Width - cmdOk.Width) / 2

End Sub


⌨️ 快捷键说明

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