my form doesn't let me access already created data?

M

mrbeepa

I created a form based on a table I created called contracts. when I switch
to database view I can add new records but I can't see old records? Any clue
to what I'm doing wrong?
 
D

Douglas J. Steele

Sounds as though you might have set the form's DateEntry property to True.
Change that to False. The DataEntry property doesn't determine whether
records can be added; it only determines whether existing records are
displayed.
 
K

Ken Sheridan

Is the form's DataEntry property set to True (Yes)? If so change it to False
(No). This property is specifically intended for forms used only for
entering new records.

Ken Sheridan
Stafford, England
 
J

John W. Vinson/MVP

I created a form based on a table I created called contracts. when I switch
to database view I can add new records but I can't see old records? Any clue
to what I'm doing wrong?

Take a look at the form's Properties. If the form's Data Entry
property is set to Yes, change it to No - that's exactly what this
property does (lets you enter new data but conceals old data).
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top