N Neal Registered User. Local time Today, 00:14 Joined Feb 17, 2000 Messages 116 Feb 26, 2001 #1 Does anyone know of a way to make a new record appear at the top of a continuous form? I have set the record numbers to sort descending, but when I want to start a new record, I always drop to the bottom of the recordset.
Does anyone know of a way to make a new record appear at the top of a continuous form? I have set the record numbers to sort descending, but when I want to start a new record, I always drop to the bottom of the recordset.
L llkhoutx Registered User. Local time Yesterday, 18:14 Joined Feb 26, 2001 Messages 4,018 Feb 26, 2001 #2 AfterUpdate on the new reqcord, requery your form. It will puts your records, all of them, in descending order. New records are added to the end of the recordset, the requery rearranges them.
AfterUpdate on the new reqcord, requery your form. It will puts your records, all of them, in descending order. New records are added to the end of the recordset, the requery rearranges them.