tabbed form
Just saw something interesting while looking through the Contacts database that comes with Access. The contacts form is a tabbed form and on the record source for the form it has
SELECT [Contacts].[ContactID], [Contacts].[FirstName], [Contacts].[LastName], [Contacts].[Dear], [Contacts].[CompanyID], [Contacts].[Title], [Contacts].[WorkPhone], [Contacts].[WorkExtension], [Contacts].[HomePhone], [Contacts].[MobilePhone], [Contacts].[FaxNumber], [Contacts].[PagerNumber], [Contacts].[EmailName], [Contacts].[Birthdate], [Contacts].[LastMeetingDate], [Contacts].[ContactTypeID], [Contacts].[ReferredBy], [Contacts].[Notes], [Contacts].[MaritalStatus], [Contacts].[SpouseName], [Contacts].[SpousesInterests], [Contacts].[ChildrenNames], [Contacts].[Hometown], [Contacts].[ContactsInterests], [Company].[CompanyName], [Company].[Address], [Company].[City], [Company].[StateOrProvince], [Company].[PostalCode], [Company].[Region], [Company].[Country], [Company].[WebSite] FROM Company RIGHT JOIN Contacts ON [Company].[CompanyID]=[Contacts].[CompanyID] ORDER BY [Contacts].[LastName];
which appears to pull data from 2 different tables. This might be a way to get around using subforms. I've been trying to use subforms on a tabbed form but the records have to be changed manually on each tabbed page with a subform on it which seems to defeat the purpose of having a tabbed form.