frmTeach.frm
上传用户:zhouyf163
上传日期:2010-02-28
资源大小:80k
文件大小:2k
源码类别:

图形/文字识别

开发平台:

Visual Basic

  1. VERSION 5.00
  2. Begin VB.Form frmTeach 
  3.    Caption         =   "Teach"
  4.    ClientHeight    =   1095
  5.    ClientLeft      =   4275
  6.    ClientTop       =   4965
  7.    ClientWidth     =   4710
  8.    LinkTopic       =   "Form1"
  9.    ScaleHeight     =   1095
  10.    ScaleWidth      =   4710
  11.    Begin VB.CommandButton Cancel 
  12.       Caption         =   "&Cancel"
  13.       Height          =   375
  14.       Left            =   3600
  15.       TabIndex        =   2
  16.       Top             =   600
  17.       Width           =   975
  18.    End
  19.    Begin VB.CommandButton Teach 
  20.       Caption         =   "&Enter"
  21.       Height          =   375
  22.       Left            =   3600
  23.       TabIndex        =   1
  24.       Top             =   120
  25.       Width           =   975
  26.    End
  27.    Begin VB.TextBox TeachText 
  28.       Height          =   375
  29.       Left            =   2640
  30.       TabIndex        =   0
  31.       Top             =   480
  32.       Width           =   495
  33.    End
  34.    Begin VB.Image Image1 
  35.       Height          =   720
  36.       Left            =   120
  37.       Picture         =   "frmTeach.frx":0000
  38.       Top             =   120
  39.       Width           =   720
  40.    End
  41.    Begin VB.Label Label1 
  42.       Caption         =   "Enter a character that must be taught"
  43.       BeginProperty Font 
  44.          Name            =   "Tahoma"
  45.          Size            =   8.25
  46.          Charset         =   0
  47.          Weight          =   700
  48.          Underline       =   0   'False
  49.          Italic          =   0   'False
  50.          Strikethrough   =   0   'False
  51.       EndProperty
  52.       Height          =   495
  53.       Left            =   960
  54.       TabIndex        =   3
  55.       Top             =   120
  56.       Width           =   2175
  57.    End
  58. End
  59. Attribute VB_Name = "frmTeach"
  60. Attribute VB_GlobalNameSpace = False
  61. Attribute VB_Creatable = False
  62. Attribute VB_PredeclaredId = True
  63. Attribute VB_Exposed = False
  64. Private Sub Cancel_Click()
  65.     Unload Me
  66. End Sub
  67. Private Sub Teach_Click()
  68.     frmMain.Main_TeachText = TeachText.Text
  69.     Unload Me
  70. End Sub