I'm just curious if this is normal. I have a combobox on a form (in the title section) that I use to go to a specific record in the form. It uses the DoCmd.SearchFor Record method. I just discovered that using the combobox to go to a record doesn't trigger the On_Current event of the form. From what I remember, it should. In this particular case it doesn't matter as all the On_Current event does is call a sub so I can just call the sub from the After_Update event of the combobox.
I also have a textbox that allows me to type in a value and it uses the Me.Recordset.Fi ndFirst method to find the record. However, it triggers the On_Current event of the form. Is the difference just in the method of going to the record?
I also have a textbox that allows me to type in a value and it uses the Me.Recordset.Fi ndFirst method to find the record. However, it triggers the On_Current event of the form. Is the difference just in the method of going to the record?
Comment