Thanks that fixed the bookmark problem but created another, now instead of my data being in order by account number say 1, 2, 3, etc.. it is 2, 3, 4, 5, 6, 1 where the number that is at the end should be at the beginning. Here's my load function if it helps.
Dim connectionString As String
Set DB = New ADODB.Connection
Set RS = New ADODB.Recordset
DB.Provider = "Microsoft.Jet.OLEDB.4.0"
DB.Properties("Data Source"

= ".\FCWC-db.mdb"
DB.Open
Set RS.ActiveConnection = DB
RS.CursorLocation = adUseClient
RS.CursorType = adOpenDynamic
RS.LockType = adLockOptimistic
connectionString = "SELECT BillingNumber, " _
& "Total, Name, " _
& "Address1, Address2, " _
& "City, State, " _
& "Zip, Phone1, " _
& "Contact1, Extension1, " _
& "Phone2, Contact2, " _
& "Extension2, CellPhone, " _
& "Notes FROM BillingAccount"
RS.Open connectionString, DB, adOpenDynamic, adLockOptimistic
Call DispForm
Thanks for the help,
Steve