Quando começava a escrever, parecia a lista de todos os nomes e agora não aparece
Com o Office Access 2007, a lista já funciona O código é este Private Sub BuscaNome_AfterUpdate()
Me.RecordsetClone.FindFirst "[Nº ORDEM] = " & Me![BuscaNome] Me.Bookmark = Me.RecordsetClone.Bookmark Me![BuscaNome] = "" Me![NOME].SetFocus Me![BuscaNome].Enabled = False Comando57.Enabled = True End Sub Private Sub BuscaNome_LostFocus() If IsNull(BuscaNome) Then BuscaNome = "" Me!NOME.SetFocus BuscaNome.Enabled = False Comando57.Enabled = True End If End Sub Private Sub BuscaNome_MouseMove(Button As Integer, Shift As Integer, X As Single, Y As Single) Me!STATUS.Caption = "Relação de Funcionários para pesquisa" End Sub Private Sub BuscaNome_NotInList(NewData As String, Response As Integer) MsgBox "Funcionário não cadastrado!" Response = acDataErrContinue End Sub