Question abt bound forms

roh_8_it_3

Registered User.
Local time
Today, 11:07
Joined
Feb 15, 2005
Messages
79
Hi All,

I have a main bound form which has tabs.On some tabs i m calling the subforms which are also bound forms.

I am facing a problem in which access automatically saves the data eevn if u dont want to save it.In my subforms i have save button to save the data ..i am also doing some validations there

but if the user is filling some information and then he hits the another tab the data gets stored automatically.

is there any event for the form where i can undo if the user has entered some data..

my subforms are continous forms.

Thanks to all for their help.
 
Form_BeforeUpdate can be used to do a Me.Undo successfully.
 
but the form_beforeupdate event is not called when u are exiting the subform..

i tried the form_close and form_unload but these events are also not called and the problem is the data gets saved whicj i dont want.

any help pls.
 
The SubForm's Form_BeforeUpdate event will be called as you exit the SubForm if data is to be saved.
 

Users who are viewing this thread

Back
Top Bottom