📄 frmteach.frm
字号:
VERSION 5.00
Begin VB.Form frmTeach
Caption = "Teach"
ClientHeight = 1095
ClientLeft = 60
ClientTop = 345
ClientWidth = 4710
LinkTopic = "Form1"
ScaleHeight = 1095
ScaleWidth = 4710
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Cancel
Caption = "&Cancel"
Height = 375
Left = 3600
TabIndex = 2
Top = 600
Width = 975
End
Begin VB.CommandButton Teach
Caption = "&Teach"
Height = 375
Left = 3600
TabIndex = 1
Top = 120
Width = 975
End
Begin VB.TextBox TeachText
Height = 375
Left = 2640
TabIndex = 0
Top = 160
Width = 495
End
Begin VB.Label Label1
Caption = "Enter a character to be teach"
Height = 255
Left = 240
TabIndex = 3
Top = 240
Width = 2175
End
End
Attribute VB_Name = "frmTeach"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
'****************************************************************************
'人人为我,我为人人
'枕善居汉化收藏整理
'发布日期:2008/01/21
'描 述:手写字体识别软件 (v 2.01 beta)
'网 站:http://www.Mndsoft.com/ (VB6源码博客)
'网 站:http://www.VbDnet.com/ (VB.NET源码博客,主要基于.NET2005)
'e-mail :Mndsoft@163.com
'e-mail :Mndsoft@126.com
'OICQ :88382850
' 如果您有新的好的代码别忘记给枕善居哦!
'****************************************************************************
Private Sub Cancel_Click()
Unload Me
End Sub
Private Sub Teach_Click()
frmMain.Main_TeachText = TeachText.Text
Unload Me
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -