📄 sentense_in.frm
字号:
VERSION 5.00
Begin VB.Form sentense_in
Caption = "例句输入"
ClientHeight = 5370
ClientLeft = 60
ClientTop = 345
ClientWidth = 6000
LinkTopic = "Form1"
ScaleHeight = 5370
ScaleWidth = 6000
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text3
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 375
Left = 360
TabIndex = 7
Top = 2760
Width = 2295
End
Begin VB.CommandButton Command2
Caption = "取消"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3480
TabIndex = 5
Top = 3840
Width = 1575
End
Begin VB.CommandButton Command1
Caption = "确定"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1200
TabIndex = 4
Top = 3840
Width = 1575
End
Begin VB.TextBox Text2
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 360
TabIndex = 3
Top = 1560
Width = 5175
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 360
TabIndex = 1
Top = 600
Width = 5295
End
Begin VB.Label Label1
Caption = "输入关键词:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 480
TabIndex = 6
Top = 2280
Width = 1335
End
Begin VB.Label Label3
Caption = "输入翻译:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 255
Left = 480
TabIndex = 2
Top = 1200
Width = 1095
End
Begin VB.Label Label2
AutoSize = -1 'True
Caption = "输入例句:"
BeginProperty Font
Name = "宋体"
Size = 10.5
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 210
Left = 480
TabIndex = 0
Top = 240
Width = 945
End
End
Attribute VB_Name = "sentense_in"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Dim db As DAO.Database
Dim rec As DAO.Recordset
Private Sub Command1_Click()
If Text1.Text <> "" And Text2.Text <> "" And Text3.Text <> "" Then
If Me.Caption = "例句修改" Then
Set rec = db.OpenRecordset("select * from sentense where keyword='" & Trim(Text3.Text) & "'")
rec.Edit
rec!句子 = Trim(Text1.Text)
rec!翻译 = Trim(Text2.Text)
rec!keyword = Trim(Text3.Text)
rec.Update
MsgBox ("例句已经修改")
Else
rec.MoveLast
rec.AddNew
rec!句子 = Trim(Text1.Text)
rec!翻译 = Trim(Text2.Text)
rec!keyword = Trim(Text3.Text)
rec.Update
MsgBox ("例句已经输入")
End If
Else
MsgBox ("输入不能有空")
End If
Unload Me
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_Load()
Set db = OpenDatabase(App.Path & "\sourse.mdb")
Set rec = db.OpenRecordset("select * from sentense")
End Sub
Private Sub Form_Unload(Cancel As Integer)
sentense.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -