hi,
I've written this code to save the record without closing the form
so instead of write the code as
docmd.close, acform "fdlgNewAccount ",,,acSaveY es
	Does it cause problem with multiple users using the database at the same time? 
is there a better way to save a new record into the table but still have the form open?
can someone please help
					I've written this code to save the record without closing the form
so instead of write the code as
docmd.close, acform "fdlgNewAccount ",,,acSaveY es
Code:
	docmd.save, acForm "fdlgNewAccount" 'to keep the form open ..... ..... code to do other things.
is there a better way to save a new record into the table but still have the form open?
can someone please help
Comment