access 97

  • Thread starter Thread starter jburbridge
  • Start date Start date
J

jburbridge

Hi
If you make a change to a field in a form and not in the
database portion , will you loose the data??
 
Your question is not clear. A form is part of the database, so making a
change in a form is making a change in a database. However, if what you're
asking is, can you make a change to a value in a control on a form without
changing the value in a field in a table, that depends...if the control on
the form is bound to that field in that table, then any change in the
control's value will change the value in the field, unless you use code to
cancel the updating of that value.

If you want to make changes in a control without affecting fields' values,
then you can use unbound controls on forms, and use code/macro to populate
those controls with values so that they are displayed.

In other words, to give you a better answer, you need to provide us with
more information!
 
Hi
If you make a change to a field in a form and not in the
database portion , will you loose the data??

A Form is JUST A WINDOW. The data displayed on a form is the data in
the Table underlying the form; if you change it on the form, it will
be changed in the table.
 
Back
Top