Invisible Data

  • Thread starter spiz via AccessMonster.com
  • Start date
S

spiz via AccessMonster.com

Hi,
After data is placed in form, it doesn't show up after the form is opened
again.
If i change the properties to NO data entry, the data will pop up again, but
after closing and opening the form again, it disappears again.
The data is in the tables/reports but won't stick in the form.
 
D

Douglas J. Steele

Are you saying that your form has the DataEntry property set to True?

The sole purpose of that property is to determine whether existing records
are displayed. If it's True, the form shows only a blank record. If it's
False (the default value), the form shows existing records. It has nothing
to do with whether or not you're allowed to input data (in fact, it only
works when the AllowAddition property is set to True)
 
Top