I am stuck in creating this database. I keep googling and never find what I need, any help would be greatly appreciated.
I have a continuous form defined and in the footer I have the detail form. On my continuous form it just lists the question and has an edit button and a delete button. My delete of course works perfectly fine but I can't get my detail to work how I want. This form gets displayed from a login page depending on who is logged in, when the form first is displayed the detail does not show (this is supposed to be this way). They then choose a group from the drop down and it displays all of the questions that belong to that group. Then if they want to edit a question they click on the button next to the question they wish to edit. My sub-form does then appear when you click on the button but there is nothing in it.
The Record Source for the subform is a query: SELECT qryQuestion.qaPKID, qryQuestion.qaQuest, qryQuestion.qaAnswr, qryQuestion.fkgpPKID
FROM qryQuestion;
I use the property sheet on sub-form to set the Visible to "No" and when the button is clicked I set it to "Yes".
Hopefully someone can guide me what I am doing wrong. I thought earlier I could see the fields in my sub-form but now it only has frmSubformDetail inside as you can see from the image. Did I do something to mess that up?
Thanks!