E endri81 Registered User. Local time Today, 11:23 Joined Jul 5, 2010 Messages 121 Oct 5, 2010 #1 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?
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?
V vbaInet AWF VIP Local time Today, 19:23 Joined Jan 22, 2010 Messages 26,374 Oct 5, 2010 #2 Basically you want to link all sub pages to the main (or first) page? Are you using subforms on the other tabs?
Basically you want to link all sub pages to the main (or first) page? Are you using subforms on the other tabs?
gemma-the-husky Super Moderator Staff member Local time Today, 19:23 Joined Sep 12, 2006 Messages 16,052 Oct 5, 2010 #3 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?
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?
E endri81 Registered User. Local time Today, 11:23 Joined Jul 5, 2010 Messages 121 Oct 7, 2010 #4 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?
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?
V vbaInet AWF VIP Local time Today, 19:23 Joined Jan 22, 2010 Messages 26,374 Oct 7, 2010 #5 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
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