Hvordan ændrer jeg en checkbox i et Control-loop?
Jeg har denne kode:For Each ctl In Me.Controls
If ctl.ControlType = acTextBox Or ctl.ControlType = acComboBox Then
With ctl
.SetFocus
.Text = ""
End With
Else
If ctl.ControlType = acCheckBox Then
.SetFocus
'Her vil jeg sætte checkbox til 'ikke valgt'
End If
End If
Next ctl
Jeg kan ikke se hvordan jeg laver noget a la '.Value = False'
Pfh Tak :)