filling field using bookmark method

G

Guest

Hello. I am having a dillemma with a field filling when a cbo is used. I
have a main form that has different fields on it. These are bound to the
table in an after update event of the cbo. The cbo on the form that is used
to select the record and the other fields fill in using the following code;

dim rs as object
set rs = me.recordset.clone
rs.findfirst "[reviewID] = " & str(me![cboSelectReview])
me.bookmark = rs.bookmark

I have used this many times before and the same process of binding the form
to the table and it all works.

What is occuring now and I am at a loss why, is that the one field
"cboClaimStaffID" does and doesn't fill in at times. All other fields work
correctly except this one field. I have retraced steps, any coding, queries,
etc and can not see the problem.

Has anyone come across this and if so what was the fix?
Thanks. If better explanation is needed, let me know.
*** John
 
G

Guest

One thing I forgot to ask also is; would it be better to get away from the
bookmark method and use a query or stay with the bookmark method?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads

Filter Combo Box Listing 5
RunTime Error 3070 8
Search combo box 2
OnLoad event criteria 4
Auto Number Lookup 1
Requery/bookmark 4
Textbox Filter 4
Combo Box - Find Record - Multiple Field Key Problem 1

Top