Solved how to Find a record on another form

smig

Registered User.
Local time
Today, 08:29
Joined
Nov 25, 2009
Messages
2,209
Hello

I need to find a specific record on another open form.
I want to select the "RecordName", based on the "RecordID"
How can I do that ?

Thanks
 
You could use a recordset clone of the forms recordset, then a find first on that.
 
why do you need to find it in the form?
you can find it in the table/query using Dlookup().
 
why do you need to find it in the form?
you can find it in the table/query using Dlookup().
I requery the form to show some changes made.
I need to go back to the record I was in
 
I requery the form to show some changes made.
I need to go back to the record I was in
Hi. Just curious, rather than use this,

Me.Requery

try it this way,

Me.Recordset.Requery
 
I'll try to explain the situation better

I have a form with two SubForms
The top one show a list of records and the bottom one show some data for the selected record on top.

After editing data in the Bottom one I need to requery the top one to reflect some changes made.
Now I need to go back to the record I edited
 
Use recordset method and a bookmark.
 
Just FYI,
Forms don't store data. Tables store data. If you're looking for data, look in a table, NOT in a form.
 

Users who are viewing this thread

Back
Top Bottom