table not getting updated

K

kkruz

I have a form with info derived from a query. It opens from another form
with default data in some of the fields.
While trying to save information programmably, i can not get this to happen.
The only time that I can get the info to update in a table is when I
actually change one of the default values.

Can anyone help we determine a method to use to force the action of data
moving to the table?

thanks
 
R

Rick Brandt

kkruz said:
I have a form with info derived from a query. It opens from another
form with default data in some of the fields.
While trying to save information programmably, i can not get this to
happen. The only time that I can get the info to update in a table is
when I actually change one of the default values.

Can anyone help we determine a method to use to force the action of
data moving to the table?

thanks

In 99.999% of cases one would not want a record to actually be created just from
default values so that is not how it works. In fact there actually is no record
created and thus no record to save until at least one value is set either
manually or programmatically. Just set one of those controls with a default
value equal to itself and that will dirty the form allowing you to save it.
 
Top