I've created a standard "find" button on my form. It works, but very slowly, too slowly to be useful. It works fine on the ID# (primary key), but not on the lastname field, even though it's indexed. The underlying code is as follows:
Screen.PreviousControl.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Are there any alternatives to this code that would be more efficient? Users are waiting over a minute to pull up a record, which they say is unacceptable.
Screen.PreviousControl.SetFocus
DoCmd.DoMenuItem acFormBar, acEditMenu, 10, , acMenuVer70
Are there any alternatives to this code that would be more efficient? Users are waiting over a minute to pull up a record, which they say is unacceptable.