Opening subforms in one master form????

A

Access Help

Hi all,
Can anyone tell me how to open all all the forms in one window? So I click
on a button a form open within on window?
Thanks
 
A

Access Help

Hi there,
Thanks for that but I get the following error

"expression to you entered refers to an object that is closed or doesn't
exist"
here is my code

Private Sub CreateNewIssue_Click()
With Me!mycollection (childford)
.SourceObject = "index" (parent form)
.SetFocus
.Form!mycollection.SetFocus
End With

DoCmd.GoToRecord , , acNewRec
End Sub
 
Top