Why not set the order in the form's record source query?

Signature
Duane Hookom
MS Access MVP
>I have a simple form with seven fields, based directly on a simple table
>with seven fields. When the form is opened, I'd like the records displayed
[quoted text clipped - 5 lines]
>
> Jerry
Jerry Crosby - 14 Oct 2005 18:59 GMT
Easily done, I guess. Currently I have the source as the table, since I'm
using all 7 fields. Is it more efficient to use a query as the record
source rather than a table in that situation?
Jerry
Duane Hookom - 15 Oct 2005 00:44 GMT
A query should not slow your form loading.

Signature
Duane Hookom
MS Access MVP
> Easily done, I guess. Currently I have the source as the table, since I'm
> using all 7 fields. Is it more efficient to use a query as the record
> source rather than a table in that situation?
>
> Jerry
SusanV - 14 Oct 2005 19:02 GMT
Also, if you don't want a stored query that users can modify, you can set
the source of the form to the select statement directly, such as SELECT *
FROM yourTable ORDER BY LastName
> Why not set the order in the form's record source query?
>
[quoted text clipped - 7 lines]
>>
>> Jerry