No current record - error message.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am new to database design and have just created my first DB on Access 97 -
v old hardware mean v old software!

Everything is going fine but I'm currently trying to create some reports and
I keep getting the error message NO CURRENT RECORDS. Can anyone tell me
what this means?
 
if you haven't entered any data into the database, that could cause the error
you are seeing. If this is the case try entering in some bogus information
for testing and see if you still get the same error. Hope that helps.......
 
Examples of the "No Current Record" error situation:

1. You opened a recordset, and performed a Seek or Find operation that
resulted in a NoMatch, and tried to use the record. (This also occurs if you
are at BOF or EOF in your recordset.)

2. You tried to do something in a form or report that had no records. (In a
form, this only happens if a new record cannot be added.)

3. You are using Access 2002 Service Pack 3, and are trying to use the
BeforeDelConfirm or AfterDelConfirm events. This is a known bug with this
version.

4. Your database has a corruption. This could be a bad index, or a bad
pointer on a memo (or OLE or Hyperlink) field. If it is a bad index, you may
be able to solve it by repairing the database (Tools | Database Utilities |
Compact/Repair.) More on repairing corruption:
http://allenbrowne.com/ser-47.html
particularly the 3rd or 4th symptom.
 
Back
Top