S smig Registered User. Local time Today, 18:33 Joined Nov 25, 2009 Messages 2,209 Dec 23, 2020 #1 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
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
Minty AWF VIP Local time Today, 16:33 Joined Jul 26, 2013 Messages 10,647 Dec 23, 2020 #2 You could use a recordset clone of the forms recordset, then a find first on that.
arnelgp ..forever waiting... waiting for jellybean! Local time Today, 23:33 Joined May 7, 2009 Messages 20,275 Dec 23, 2020 #3 why do you need to find it in the form? you can find it in the table/query using Dlookup().
S smig Registered User. Local time Today, 18:33 Joined Nov 25, 2009 Messages 2,209 Dec 23, 2020 #4 arnelgp said: why do you need to find it in the form? you can find it in the table/query using Dlookup(). Click to expand... I requery the form to show some changes made. I need to go back to the record I was in
arnelgp said: why do you need to find it in the form? you can find it in the table/query using Dlookup(). Click to expand... I requery the form to show some changes made. I need to go back to the record I was in
theDBguy I’m here to help Staff member Local time Today, 08:33 Joined Oct 29, 2018 Messages 22,529 Dec 23, 2020 #5 smig said: I requery the form to show some changes made. I need to go back to the record I was in Click to expand... Hi. Just curious, rather than use this, Me.Requery try it this way, Me.Recordset.Requery
smig said: I requery the form to show some changes made. I need to go back to the record I was in Click to expand... Hi. Just curious, rather than use this, Me.Requery try it this way, Me.Recordset.Requery
S smig Registered User. Local time Today, 18:33 Joined Nov 25, 2009 Messages 2,209 Dec 23, 2020 #6 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
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
Minty AWF VIP Local time Today, 16:33 Joined Jul 26, 2013 Messages 10,647 Dec 23, 2020 #7 Use recordset method and a bookmark.
S smig Registered User. Local time Today, 18:33 Joined Nov 25, 2009 Messages 2,209 Dec 23, 2020 #8 theDBguy said: Hi. Just curious, rather than use this, Me.Requery try it this way, Me.Recordset.Requery Click to expand... Thanks This do the job
theDBguy said: Hi. Just curious, rather than use this, Me.Requery try it this way, Me.Recordset.Requery Click to expand... Thanks This do the job
theDBguy I’m here to help Staff member Local time Today, 08:33 Joined Oct 29, 2018 Messages 22,529 Dec 23, 2020 #9 smig said: Thanks This do the job Click to expand... Hi. Glad to hear that. Good luck with your project.
smig said: Thanks This do the job Click to expand... Hi. Glad to hear that. Good luck with your project.
P Pat Hartman Super Moderator Staff member Local time Today, 11:33 Joined Feb 19, 2002 Messages 47,044 Dec 23, 2020 #10 Just FYI, Forms don't store data. Tables store data. If you're looking for data, look in a table, NOT in a form.
Just FYI, Forms don't store data. Tables store data. If you're looking for data, look in a table, NOT in a form.
S smig Registered User. Local time Today, 18:33 Joined Nov 25, 2009 Messages 2,209 Dec 30, 2020 #11 Pat Hartman said: Just FYI, Forms don't store data. Tables store data. If you're looking for data, look in a table, NOT in a form. Click to expand... I know
Pat Hartman said: Just FYI, Forms don't store data. Tables store data. If you're looking for data, look in a table, NOT in a form. Click to expand... I know