Form Issue

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

Guest

I have a form that I built around three tables. Two serve as list box's and
the third is storing my data. The problem I am having is that each time I
open the form the only records I can see are the ones I enter before I close.
None of the other records are accessible once I log out. If I go in and
view the table there are records from each time I close.
 
Sooner said:
I have a form that I built around three tables. Two serve as list
box's and the third is storing my data. The problem I am having is
that each time I open the form the only records I can see are the
ones I enter before I close. None of the other records are accessible
once I log out. If I go in and view the table there are records from
each time I close.

That is how a form behaves when its DataEntry property is set to True. Just set
it to False and all records will be shown.
 
Back
Top