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

📄 instruct.frm

📁 一个很好的VB程序
💻 FRM
字号:
VERSION 5.00
Begin VB.Form frmInstruct 
   BorderStyle     =   3  'Fixed Dialog
   Caption         =   "VBtris32 Instructions"
   ClientHeight    =   2625
   ClientLeft      =   1200
   ClientTop       =   2745
   ClientWidth     =   5535
   ControlBox      =   0   'False
   Icon            =   "Instruct.frx":0000
   LinkTopic       =   "Form1"
   MaxButton       =   0   'False
   MinButton       =   0   'False
   PaletteMode     =   1  'UseZOrder
   ScaleHeight     =   2625
   ScaleWidth      =   5535
   ShowInTaskbar   =   0   'False
   Begin VB.CommandButton cmdOk 
      Caption         =   "OK"
      Height          =   300
      Left            =   1080
      TabIndex        =   5
      Top             =   2220
      Width           =   1095
   End
   Begin VB.Label Label5 
      Caption         =   "To pause and unpause the game, press P or us the Pause menu."
      Height          =   375
      Left            =   960
      TabIndex        =   4
      Top             =   1710
      Width           =   4575
   End
   Begin VB.Label Label4 
      Caption         =   "To make the pieces fall right to the bottom, press the down key."
      Height          =   255
      Left            =   960
      TabIndex        =   3
      Top             =   1440
      Width           =   4575
   End
   Begin VB.Label Label3 
      Caption         =   "To rotate the pieces, press either the up key or 5 on the numpad."
      Height          =   495
      Left            =   960
      TabIndex        =   2
      Top             =   960
      Width           =   4575
   End
   Begin VB.Label Label2 
      Caption         =   "To move the pieces left and right, use the left and right arrow keys.  (Make sure numlock is off if you are using the numpad)"
      Height          =   495
      Left            =   960
      TabIndex        =   1
      Top             =   480
      Width           =   4575
   End
   Begin VB.Label Label1 
      Caption         =   "VBtris32 is very simple to play."
      Height          =   255
      Left            =   960
      TabIndex        =   0
      Top             =   120
      Width           =   4575
   End
   Begin VB.Image Image1 
      Height          =   480
      Left            =   240
      Picture         =   "Instruct.frx":030A
      Top             =   240
      Width           =   480
   End
End
Attribute VB_Name = "frmInstruct"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub cmdOk_Click()
'Hide the form
frmInstruct.Hide

End Sub


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

End Sub


⌨️ 快捷键说明

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