This is probably going to sound like a strange question but please bare with me. I have my form tied with a table on a database server and it is very slow to populate the recordsource with all of the records in the table when I open it.....ie it takes forever! What I have done is set it up so so the recordsource only accesses / pulls one record at a time... and seems to work great.
My only issue now is when I first open my form. I want the default mode to be on a new record for the user to fill in. If the user doesn't want to fill in a new recore, but wants to select a previous one from my drop down combo box, then that's fine too. (Having the ability to view previous records is why I can't open the form in the FormAdd mode)
Anyway, the only way I could get this to work was to put the following criteria expression into my recordsource query when my form first opens
DMax("MyRecordID","MyTable"
+1
The form opens waiting for the user to enter a new record and it seems to work just fine....But I'm wondering if there's a right way to be doing this?
Any suggestions or comments greatly appreciated
Thanks...Toga
My only issue now is when I first open my form. I want the default mode to be on a new record for the user to fill in. If the user doesn't want to fill in a new recore, but wants to select a previous one from my drop down combo box, then that's fine too. (Having the ability to view previous records is why I can't open the form in the FormAdd mode)
Anyway, the only way I could get this to work was to put the following criteria expression into my recordsource query when my form first opens
DMax("MyRecordID","MyTable"
The form opens waiting for the user to enter a new record and it seems to work just fine....But I'm wondering if there's a right way to be doing this?
Any suggestions or comments greatly appreciated
Thanks...Toga