Form2.frm
上传用户:tashmp
上传日期:2010-04-03
资源大小:882k
文件大小:2k
源码类别:

其他游戏

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form Form2 
  3.    Caption         =   "游戏设置"
  4.    ClientHeight    =   1365
  5.    ClientLeft      =   60
  6.    ClientTop       =   345
  7.    ClientWidth     =   2595
  8.    LinkTopic       =   "Form2"
  9.    ScaleHeight     =   1365
  10.    ScaleWidth      =   2595
  11.    StartUpPosition =   3  'Windows Default
  12.    Begin VB.CommandButton Command2 
  13.       Caption         =   "重设"
  14.       Height          =   375
  15.       Left            =   1320
  16.       TabIndex        =   3
  17.       Top             =   840
  18.       Width           =   855
  19.    End
  20.    Begin VB.CommandButton Command1 
  21.       Caption         =   "确定"
  22.       Height          =   375
  23.       Left            =   240
  24.       TabIndex        =   2
  25.       Top             =   840
  26.       Width           =   855
  27.    End
  28.    Begin VB.TextBox Text1 
  29.       Height          =   375
  30.       Left            =   840
  31.       TabIndex        =   1
  32.       Top             =   240
  33.       Width           =   1095
  34.    End
  35.    Begin VB.Image Image1 
  36.       Height          =   480
  37.       Left            =   2040
  38.       Picture         =   "Form2.frx":0000
  39.       Top             =   240
  40.       Width           =   480
  41.    End
  42.    Begin VB.Label Label1 
  43.       Caption         =   "地雷个数"
  44.       Height          =   255
  45.       Left            =   0
  46.       TabIndex        =   0
  47.       Top             =   240
  48.       Width           =   735
  49.    End
  50. End
  51. Attribute VB_Name = "Form2"
  52. Attribute VB_GlobalNameSpace = False
  53. Attribute VB_Creatable = False
  54. Attribute VB_PredeclaredId = True
  55. Attribute VB_Exposed = False
  56. '游戏设置确定
  57. Private Sub Command1_Click()
  58. If Val(Text1.Text) <= 16 And Text1.Text <> "" Then '地雷数要少于16个
  59. bobm_number = Val(Text1)
  60. Form2.Hide
  61. Call newGame
  62. Else
  63. MsgBox "地雷数太多(地雷数少于16个)!!", 48, "友情提示!"
  64. End If
  65. End Sub
  66. '重设地雷数
  67. Private Sub Command2_Click()
  68. Text1.Text = ""
  69. End Sub
  70. Private Sub Form_Load()
  71. Form2.Left = Form1.Left + Form1.Width + 10
  72. Form2.Top = Form1.Top
  73. End Sub
  74. '防止输入第一个数为0
  75. Private Sub Text1_Change()
  76. Dim s As String
  77. s = Text1
  78. If Left(s, 1) = "0" Then
  79. MsgBox "无效输入(第一个数不能为0)!", 48, "友情提示!"
  80. Text1.Text = ""
  81. End If
  82. End Sub
  83. '只让输入数字
  84. Private Sub Text1_KeyPress(KeyAscii As Integer)
  85. Dim s As String
  86. s = Trim(Text1.Text)
  87. 's = Left(s, 1)
  88. 'MsgBox s
  89. If KeyAscii >= 48 And KeyAscii <= 57 Then '只让输入数字
  90. Else
  91. KeyAscii = 0 '输入非数字无效
  92. End If
  93. 'If Left(s, 1) = "0" Then
  94. 'MsgBox "无效输入,请重新设置!", 48, "友情提示!"
  95. 'End If
  96. End Sub