I have a mainform based on a simple query ( qryAllClients ) SQL statement i.e.
However, it doesn't open the form in alphabetical name order a la telephone directory style. When I 'run' the query 'standalone', it presents the datasheet view perfectly, and as expected in alphabetical order ? Would opening my mainform, which I do, at a new record, i.e just past EOF, have any bearing on this anomaly ? Can't think of any other possible reason.

Code:
SELECT tblClients.Client_ID, *
FROM tblClients
ORDER BY tblClients.Surname, tblClients.Forename;