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

其他游戏

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form mainForm 
  3.    Caption         =   "键上飞打字王"
  4.    ClientHeight    =   5490
  5.    ClientLeft      =   45
  6.    ClientTop       =   330
  7.    ClientWidth     =   5430
  8.    ForeColor       =   &H0000C000&
  9.    Icon            =   "Form1.frx":0000
  10.    LinkTopic       =   "Form1"
  11.    MaxButton       =   0   'False
  12.    ScaleHeight     =   5490
  13.    ScaleWidth      =   5430
  14.    StartUpPosition =   3  'Windows Default
  15.    Begin VB.PictureBox Picture1 
  16.       AutoSize        =   -1  'True
  17.       Height          =   3480
  18.       Left            =   480
  19.       Picture         =   "Form1.frx":030A
  20.       ScaleHeight     =   3420
  21.       ScaleWidth      =   4500
  22.       TabIndex        =   4
  23.       Top             =   1080
  24.       Width           =   4560
  25.    End
  26.    Begin VB.CommandButton Command3 
  27.       Caption         =   " 退出"
  28.       Height          =   492
  29.       Left            =   3840
  30.       TabIndex        =   3
  31.       Top             =   4800
  32.       Width           =   1092
  33.    End
  34.    Begin VB.CommandButton Command2 
  35.       Caption         =   "打字练习"
  36.       Height          =   492
  37.       Left            =   2160
  38.       TabIndex        =   2
  39.       Top             =   4800
  40.       Width           =   1092
  41.    End
  42.    Begin VB.CommandButton entCommandtype 
  43.       Caption         =   "打字测试"
  44.       Height          =   492
  45.       Left            =   360
  46.       TabIndex        =   1
  47.       Top             =   4800
  48.       Width           =   1092
  49.    End
  50.    Begin VB.Label Label1 
  51.       Caption         =   "键上飞打字王"
  52.       BeginProperty Font 
  53.          Name            =   "黑体"
  54.          Size            =   36
  55.          Charset         =   134
  56.          Weight          =   700
  57.          Underline       =   0   'False
  58.          Italic          =   0   'False
  59.          Strikethrough   =   0   'False
  60.       EndProperty
  61.       ForeColor       =   &H00FF8080&
  62.       Height          =   735
  63.       Left            =   480
  64.       TabIndex        =   0
  65.       Top             =   240
  66.       Width           =   4575
  67.    End
  68. End
  69. Attribute VB_Name = "mainForm"
  70. Attribute VB_GlobalNameSpace = False
  71. Attribute VB_Creatable = False
  72. Attribute VB_PredeclaredId = True
  73. Attribute VB_Exposed = False
  74. Option Explicit
  75. Private Sub Command2_Click()
  76. Me.Hide
  77. tepedtestForm.Show
  78. End Sub
  79. '退出
  80. Private Sub Command3_Click()
  81. Me.Hide
  82. End
  83. End Sub
  84. '进入打字测试时间设置界面
  85. Private Sub entCommandtype_Click()
  86. Me.Hide
  87. setgameForm.Show
  88. End Sub
  89. '界初始化
  90. Private Sub Form_Load()
  91. Me.Left = (Screen.Width - Me.Width) / 2 - 50
  92. Me.Top = (Screen.Height - Me.Height) / 2 - 300
  93. End Sub