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

📄 form5.frm

📁 用vb编的游戏!
💻 FRM
字号:
VERSION 5.00
Begin VB.Form Form5 
   BorderStyle     =   4  'Fixed ToolWindow
   Caption         =   "俄罗斯方块(1.5版)帮助"
   ClientHeight    =   3045
   ClientLeft      =   45
   ClientTop       =   270
   ClientWidth     =   5190
   LinkTopic       =   "Form5"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   ScaleHeight     =   203
   ScaleMode       =   3  'Pixel
   ScaleWidth      =   346
   ShowInTaskbar   =   0   'False
   StartUpPosition =   2  '屏幕中心
   Begin VB.Frame Frame2 
      Caption         =   "警告!"
      Height          =   1095
      Left            =   2640
      TabIndex        =   2
      Top             =   240
      Width           =   2295
      Begin VB.Label Label2 
         Caption         =   "  本游戏属共享版,严禁用于任何商业用途!                         钟权成     2004/8"
         Height          =   735
         Left            =   240
         TabIndex        =   4
         Top             =   240
         Width           =   1815
      End
   End
   Begin VB.Frame Frame1 
      Caption         =   "键盘说明:"
      Height          =   2535
      Left            =   240
      TabIndex        =   1
      Top             =   240
      Width           =   1815
      Begin VB.Label Label1 
         Caption         =   "P: 暂停"
         Height          =   210
         Index           =   5
         Left            =   480
         TabIndex        =   9
         Top             =   2070
         Width           =   855
      End
      Begin VB.Label Label1 
         Caption         =   "S: 开始"
         Height          =   210
         Index           =   4
         Left            =   480
         TabIndex        =   8
         Top             =   1740
         Width           =   855
      End
      Begin VB.Label Label1 
         Caption         =   "→:右移"
         Height          =   210
         Index           =   3
         Left            =   480
         TabIndex        =   7
         Top             =   1410
         Width           =   855
      End
      Begin VB.Label Label1 
         Caption         =   "←:左移"
         Height          =   210
         Index           =   2
         Left            =   480
         TabIndex        =   6
         Top             =   1065
         Width           =   855
      End
      Begin VB.Label Label1 
         Caption         =   "↓:加速"
         Height          =   210
         Index           =   1
         Left            =   480
         TabIndex        =   5
         Top             =   735
         Width           =   855
      End
      Begin VB.Label Label1 
         Caption         =   "↑:旋转                                  →:右移             S:开始             P:暂停 "
         Height          =   210
         Index           =   0
         Left            =   480
         TabIndex        =   3
         Top             =   405
         Width           =   855
      End
   End
   Begin VB.CommandButton Command1 
      Caption         =   "回到游戏"
      Height          =   495
      Left            =   3120
      TabIndex        =   0
      Top             =   2160
      Width           =   1575
   End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Dim sa5 As Integer


Private Sub Command1_Click()
Unload Me
End Sub

Private Sub Form_Load()
sa5 = 0
 If Form1.Timer1.Enabled = True Then
  Form1.Timer1.Enabled = False
  sa5 = 1
 End If

End Sub

Private Sub Form_Unload(Cancel As Integer)
If sa5 = 1 Then
Form1.Timer1.Enabled = True
Form1.p = 1
End If
End Sub

⌨️ 快捷键说明

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