Thanks, sometimes the really stupid tricks are overlooked!!! I was making
this much too hard.
Ed Warren.
>> So how, and where should I put the code to force the proper sorting of
>> the records.
>
> Create a query sorted the way you want and use it for Form B's source.
>
> Tom Lake
Ron2006 - 02 Jun 2006 19:37 GMT
Whenever you want to programmatically set the sort order or the filter
you also have to set that action on.
Example:
Private Sub Form_Open(Cancel As Integer)
Me.OrderBy = "[datetimecreated] DESC"
Me.OrderByOn = true
End Sub