Preciso utilizar o código abaixo, mas ele só funciona no registro com o fóco, não faz o loop pelos registros do formulário
Public Function desmarca_kSel(frm As Form)
Dim ctl As Control
For Each ctl In frm.Controls
If ((ctl.ControlType = acCheckBox) And (ctl.Name = "kSel")) Then
ctl.Value = 0
End If
Next ctl
End Function
Chamar: Call desmarca_kSel(Forms!fr5Flx6a!fr5Flx6z.Form!fr5Flx6bc.Form)
Se alguem puder me indicar o que está incorreto, fico agradecido.
Public Function desmarca_kSel(frm As Form)
Dim ctl As Control
For Each ctl In frm.Controls
If ((ctl.ControlType = acCheckBox) And (ctl.Name = "kSel")) Then
ctl.Value = 0
End If
Next ctl
End Function
Chamar: Call desmarca_kSel(Forms!fr5Flx6a!fr5Flx6z.Form!fr5Flx6bc.Form)
Se alguem puder me indicar o que está incorreto, fico agradecido.