S
SF
Hi,
I put a button on an unbound form to reset several unbound fields to null.
The code below give me an error "Method or data member not found"
Dim ctl As Control
For Each ctl In Me.Controls
If ctl.ControlType = acTextBox Then
Me.ctl = ""
End If
Next ctl
SF
I put a button on an unbound form to reset several unbound fields to null.
The code below give me an error "Method or data member not found"
Dim ctl As Control
For Each ctl In Me.Controls
If ctl.ControlType = acTextBox Then
Me.ctl = ""
End If
Next ctl
SF