Hello everyone, I currently doing a database project, which is part of my coursework, and I am having some difficulties. So, I am making it in Microsoft Access 2003. In my form, I want have to tabs (Client and Music Store), and I already have 2 tables, for each tab. I have tried a couple of different things, like queries and also SQL, and they write the data, as they should do, to the table. Inside of each tab, I also want to use my own buttons, to go to the previous and next record, and I know they do work, i used Visual Basics (DoCmd.GoToRecord , , acPrevious/DoCmd.GoToRecord , , acNext) in order to make them work. And I also know they're working because, I have written 2 different records the form and I have switched between those two records. Nevertheless, when I closed down the form and opened it back up, I noticed that the records weren't showing up, but they were still saved on my table. I used SQL to make it working, but as I said after opening it up, the records on my table don't show up, this is the code that I've used:
SELECT Client.*, [Music Store].* FROM Client INNER JOIN [Music Store] ON Client.ID = [Music Store].ID;
I used the wizard to do that (the 3 dots next to the "Record Source"), and I also tried a query but it didn't work either, any ideas on how to make it saving and showing up the records when loading the form, I understand a bit of Visual Basics, would be highly appreciated. Thanks Dan08.