📄 dialog.frm
字号:
VERSION 5.00
Begin VB.Form dialog
BorderStyle = 3 'Fixed Dialog
ClientHeight = 1230
ClientLeft = 4755
ClientTop = 4005
ClientWidth = 3000
BeginProperty Font
Name = "宋体"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Icon = "Dialog.frx":0000
LinkTopic = "Form1"
LockControls = -1 'True
MaxButton = 0 'False
MinButton = 0 'False
NegotiateMenus = 0 'False
ScaleHeight = 1230
ScaleWidth = 3000
ShowInTaskbar = 0 'False
WhatsThisHelp = -1 'True
Begin VB.CommandButton CancelButton
Cancel = -1 'True
Caption = "取消"
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 1545
TabIndex = 1
Top = 795
Width = 990
End
Begin VB.CommandButton OKButton
Caption = "确定"
Default = -1 'True
BeginProperty Font
Name = "宋体"
Size = 9
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 315
Left = 315
TabIndex = 0
Top = 780
Width = 990
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "游戏结束了!是时候看书了!还要继续玩吗?"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 540
Left = 300
TabIndex = 2
Top = 135
Width = 2400
End
End
Attribute VB_Name = "dialog"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub CancelButton_Click()
Unload Me
End Sub
Private Sub Form_Load()
Caption = "你的得分是" & MyScore
Form1.Timer1.Interval = 0
If sndDie <> "" Then sndPlaySound sndDie, 3
End Sub
Private Sub Form_Unload(Cancel As Integer)
OKButton_Click
End Sub
Private Sub OKButton_Click()
Unload Me
GeneralNewGame LastRow, LastCol
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -