DoCmd.OpenForm "frmFiller", acFormDS, , , , acDialog
Forms!frmFiller.Target = "ddd"
Form code is
Option Compare Database
Option Explicit
Private iSource As String
Private Sub Form_Current()
MsgBox iSource
End Sub
Public Property Let Target(a As String)
iSource = a
End Property
By stepping...