tabbed form

endri81

Registered User.
Local time
Today, 11:23
Joined
Jul 5, 2010
Messages
121
Hi
Im creating a patient data tabbed form.
My problem is saving data when you pass from one page to other because this data belong to the same patient.Is kind of confusing for me.
Any help?
 
Basically you want to link all sub pages to the main (or first) page?

Are you using subforms on the other tabs?
 
the tab control just helps layout. the controls are all part of the same record, if you will

nothing saves until you move off the record, or close the form.


is that what you mean?
 
yes u are totally correct in what is my problem
now which will be a smart solution for saving data in a correct flexible way?
 
Dave answered your question, you have to move to another record before it saves. To force a save when you move between pages you could try:
Code:
Docmd.runcommand accmdsaverecord
 

Users who are viewing this thread

Back
Top Bottom