P
Prohock
I have a form to update a list box. Everything works well but the user must
hit "enter" after imputing a new item or the value will not be updated in the
list box. All edits to list box work, but new fields require the "enter" key
to be pressed. How can I program the "enter" key in VB in a close button. So
far I have tried the following:
Private Sub Command4_Click()
DoCmd.Restore
Forms("frmVictim").lstVictim.Requery
DoCmd.Close
End Sub
hit "enter" after imputing a new item or the value will not be updated in the
list box. All edits to list box work, but new fields require the "enter" key
to be pressed. How can I program the "enter" key in VB in a close button. So
far I have tried the following:
Private Sub Command4_Click()
DoCmd.Restore
Forms("frmVictim").lstVictim.Requery
DoCmd.Close
End Sub