A family of Microsoft relational database management systems designed for ease of use.
You might like to take a look at FormsDemo.zip in my public databases folder at:
https://onedrive.live.com/?cid=44CC60D7FEA42912&id=44CC60D7FEA42912!169
If you have trouble downloading a specific file, clicking on the 'Download' button at the top of the page while no files are selected should download a zip file of all files in the folder, from which you should then be able to unpack the relevant file.
This little demo file illustrates, amongst other things, the use of 'linked' forms in both dialogue and synchronized mode. In the demo the primary key of the 'parent' form's recordset is passed to the 'linked' form as the OpenArgs property of the OpenForm method, and then assigned to the DefaultValue property of the relevant control in the 'linked' form, using the following code in the 'linked' form's Open Event procedure:
Private Sub Form_Open(Cancel As Integer)
If Not IsNull(Me.OpenArgs) Then
Me.Event.SetFocus
Me.cboClient.DefaultValue = """" & Me.OpenArgs & """"
End If
End Sub