TheSearcher
Registered User.
- Local time
- Today, 03:49
- Joined
- Jul 21, 2011
- Messages
- 411
I've been using the following code for the past twenty years. A few minutes ago I started getting an "Object doesn't support this property or method" error on the ctl.Value = null line. Any ideas?
Code:
Dim ctl As Control
For Each ctl In Me.Controls
If ctl.Tag = "clear" Then ctl.Value = Null
Next