I have a form containing two combo boxes containing identical code except for their data source. One combo box pulls from a table containing 2000 records or less. The second combo box uses a table containing 60,000 records. Each combo box has 14 columns. All of the columns except for five are set to 0″ width. Once a name is selected in the combo box, the data in each column is being pushed into fields on the form using the after update event. All works fine when I am using the combo box pulling from the small table, but when I use the combo box pulling from the larger table, the data appears in each field of the form and then gives me an invalid bookmark error. I am not even using a bookmark in the code. If I press esc several times or exit the form and then open it again the data is there.
To check if the size of the table was the cause of the problem, I appended the records from the large table into the smaller one and sure enough the combo box referencing the small table then had the same problem.
Is there a maximum size or number of records that a combo box can satisfactorily work with? I currently am saving the record prior to the error so my data is not lost but I hate to tell users they have to press escape several times whenever they get the bookmark error.