Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
915 views
in Technique[技术] by (71.8m points)

ms access 2010 - Statement filter with control

Why the statement is no filtering with the variable Busca ?

Private Sub Txt_busca_Exit(Cancel As Integer)
  Dim strQL1, strQL2, strQL3, busca As String
  Dim db As DAO.Database
  Dim rs As DAO.Recordset

   Set db = CurrentDb
   busca = Me.Txt_busca.Text

   Select Case Quadro17
   Case 1
   Me!Lista0.BackColor = vbYellow
   Set rs = db.OpenRecordset(" select idp,funcionario,datanasc  from tb_funcionario where funcionario like & ' busca '&")
   Set Me!Lista0.Recordset = rs
   Case 2
   Me!Lista0.BackColor = vbCyan
   Set rs = db.OpenRecordset(" select idp,atleta,datanasc  from tb_jogadores ")
   Set Me!Lista0.Recordset = rs
   Case 3
   Me!Lista0.BackColor = vbRed
   Set rs = db.OpenRecordset(" select idp,visita,datanasc  from tb_visita ")
   Set Me!Lista0.Recordset = rs

   End Select
End Sub

Thanks for any help

question from:https://stackoverflow.com/questions/65912867/statement-filter-with-control

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...