R
Roger Bell
I have a Combo Box on a form that the user can use to Look up a Name.
What I would like is when a name EG: SMITH is selected and it turns out to
be the wrong SMITH, that by clicking on the Combo Box arrow, the cursor will
stay in the SMITH area instead of returning to the beginning of the list, the
A's.
This is the After Update Event Procedure for the combo box at present:
Private Sub Combo565_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[AUTONUMBER] = " & Str(Nz(Me![Combo565], 0))
If rs.EOF Then Else Me.Bookmark = rs.Bookmark
rs.Close
Me.Combo565 = Null
DoCmd.RunCommand acCmdSaveRecord
End Sub
Is there a way I can achieve this? and many thanks for any help
What I would like is when a name EG: SMITH is selected and it turns out to
be the wrong SMITH, that by clicking on the Combo Box arrow, the cursor will
stay in the SMITH area instead of returning to the beginning of the list, the
A's.
This is the After Update Event Procedure for the combo box at present:
Private Sub Combo565_AfterUpdate()
' Find the record that matches the control.
Dim rs As Object
Set rs = Me.Recordset.Clone
rs.FindFirst "[AUTONUMBER] = " & Str(Nz(Me![Combo565], 0))
If rs.EOF Then Else Me.Bookmark = rs.Bookmark
rs.Close
Me.Combo565 = Null
DoCmd.RunCommand acCmdSaveRecord
End Sub
Is there a way I can achieve this? and many thanks for any help