I have a question wrt the underlying recordsource of a sub form.....but I'll start with what I found with a standard form linked to 50000 records. From the testing I've done with a command such as
stLinkCriteria = "[CustOrderID]=" & Me![CustOrderID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
The access form needs to load all of the records (or there indexes) into memory before the form actually opens with the one record I was looking for.
Lets say a subform is tied to a table of 50000 records. If I link the master & child fields, does it also load all 50000 records before it does the search for the say 5 records my main form may be linked to? Does anyone happen to know?
stLinkCriteria = "[CustOrderID]=" & Me![CustOrderID]
DoCmd.OpenForm stDocName, , , stLinkCriteria
The access form needs to load all of the records (or there indexes) into memory before the form actually opens with the one record I was looking for.
Lets say a subform is tied to a table of 50000 records. If I link the master & child fields, does it also load all 50000 records before it does the search for the say 5 records my main form may be linked to? Does anyone happen to know?