Try something like this.
Set the frmOQDate.Caption before showing the form.

Private Sub CkboxEdit201_Click()
    If CkboxEdit201.Value = True Then
        frmOQDate.Caption = CkboxEdit201.Caption
        frmOQDate.Show
    End If
End Sub
Use the same syntax for the other applicable checkboxes.