In AfterEdit event you need to determine the next record ID and redirect user to that record edit page. Sample code (assuming that ID is the key column and database is MS Access)
sql = "select top 1 ID from TableName where ID > " & keys("ID") & " order by ID "