Dim myText As TextBox
Private Sub Command1_Click()
Text1.Text = Adodc1.Recordset.Fields("English")
Text2.Text = Adodc1.Recordset.Fields("Chinese")
Adodc1.RecordSource = "Select * From 表1 Where " & myText.Tag & " LIKE '" & myText.Text & "%';"
Adodc1.Refresh
End Sub
Private Sub Text1_LostFocus()
Set myText = Text1
End Sub
Private Sub Text2_LostFocus()
Set myText = Text2
End Sub
Private Sub Form_Load()
Text1.Tag="English"
Text2.Tag="Chinese"
End Sub