It is possible to set the "Find" command with VBA code, but I would do it a
different way. Here is an example:
Dim rst As DAO.Recordset
Dim strRecord As String
Set rst = Me.RecordsetClone
'The following code allows you to look for someone in your database by
typing in part of the last name:
strRecord = "[LastName] Like *'" & Replace(Me!Text124, "'", "''") & "*'"
rst.FindFirst strRecord
Me.Bookmark = rst.Bookmark
Linda
Jorge said:
Hi I have a bar in my form, but I like to put partial data of my Database
in
this box and with this can search some possible records, can I do this,
and
how??