S
Sharkbyte
I'm running the following code:
For Each ctl In frm.Controls
With ctl
If .ControlType = acTextBox Then
If .Tag = 2 Then
Else
.Enabled = True
.Value = .DefaultValue
End If
End If
End With
Next
I'm getting an error, on .Value, for a control identified only by acTextBox
returning a value of 109.
Is there a way to identify which control is being referenced?
Thanks for your help.
Sharkbyte
For Each ctl In frm.Controls
With ctl
If .ControlType = acTextBox Then
If .Tag = 2 Then
Else
.Enabled = True
.Value = .DefaultValue
End If
End If
End With
Next
I'm getting an error, on .Value, for a control identified only by acTextBox
returning a value of 109.
Is there a way to identify which control is being referenced?
Thanks for your help.
Sharkbyte