I need to get a copy of a Combo Box or List Box's recordset, not a reference to it. I want to manipulate the recordset, but at times set it back to the original recordset. There is no recordsetclone property for these controls. I did this and it works:
'Set rsCopy = CurrentDb.OpenRecordset(cmboTest.Recordset.Name)
But there are some limitations to using the name property. Is there another way that I am not thinking? I tried passing it byval to a function and then returning it, but that did not seem to work. Am I being dense here?
'Set rsCopy = CurrentDb.OpenRecordset(cmboTest.Recordset.Name)
But there are some limitations to using the name property. Is there another way that I am not thinking? I tried passing it byval to a function and then returning it, but that did not seem to work. Am I being dense here?