Neal
02-26-2001, 06:56 AM
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.
|
View Full Version : New record at top of continuous form Neal 02-26-2001, 06:56 AM 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. llkhoutx 02-26-2001, 12:06 PM 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. |