DoCmd.OpenForm "FormNameHere", acNormal
Forms!FormNameHere.OrderBy = "Country,LastName,FirstName"
Forms!FormNameHere.OrderByOn = True
Another way is if your Form is based on a query, do all the sorting in the query. It should translate over to the Form.
--Bob;
What does the "OrderByOn" command set to True do?
Alan