david.paton
Registered User.
- Local time
- Today, 05:00
- Joined
- Jun 26, 2013
- Messages
- 338
Opens fine for me. What exact steps are required to recreate the problem with this sample db?
In addition to the previous problem, when I open frmcarers, nothing is displayed, despite having data in the db. I have checked the allow edits property and it is set to yes.
SELECT tblCarers.*, tblNotes.NotesRecords, tblNotes.NotesDate, tblTown.TownsName, tblTown.TownsPostCode, tblState.State
FROM tblState INNER JOIN (tblTown INNER JOIN (tblCarers INNER JOIN tblNotes ON tblCarers.[ID] = tblNotes.NotesCarerID) ON tblTown.[ID] = tblCarers.CarersTownID) ON tblState.[ID] = tblTown.TownsStateID;
SELECT tblCarers.*, tblNotes.NotesRecords, tblNotes.NotesDate, tblTown.TownsName, tblTown.TownsPostCode, tblState.State
FROM tblState LEFT JOIN (tblTown LEFT JOIN (tblCarers LEFT JOIN tblNotes ON tblCarers.[ID] = tblNotes.NotesCarerID) ON tblTown.[ID] = tblCarers.CarersTownID) ON tblState.[ID] = tblTown.TownsStateID;
...I just had to set data entry to no and allow edits to yes on the form...
Thanks but I found the answer, I just had to set data entry to no and allow edits to yes on the form.
The DB I downloaded, already had those settings for the form?
Ah geez, I didn't realize there was a second page. Sorry Gasman. :banghead:
tblNotes is related to tblChild, with referential integrity enforced. You can't enter a note for a child that isn't in the child table. If you want to leave it blank, there would need to be a Null entry in tblChild.