I have a form with a command button with on click:
Private Sub Command6_Click()
Dim ID As String
Dim TT As String 'tt=time
Dim DD As Date 'dd=date
TT = Time()
DD = Date
ID = fosUserName()
Forms![frmMain]![Child9].Form![Hash] = ID
Forms![frmMain]![Child9].Form![Date] = DD
Forms![frmMain]![Child9].Form![Time] = TT
Forms![frmMain]![Child9].Form![Sent] = -1
but my child form is a Continuous Forms and I cant get it to go to next record without clicking on the child form. It will only refresh the first record from when I clicked the command button.
Private Sub Command6_Click()
Dim ID As String
Dim TT As String 'tt=time
Dim DD As Date 'dd=date
TT = Time()
DD = Date
ID = fosUserName()
Forms![frmMain]![Child9].Form![Hash] = ID
Forms![frmMain]![Child9].Form![Date] = DD
Forms![frmMain]![Child9].Form![Time] = TT
Forms![frmMain]![Child9].Form![Sent] = -1
but my child form is a Continuous Forms and I cant get it to go to next record without clicking on the child form. It will only refresh the first record from when I clicked the command button.