synergy16
Active Member
- Joined
- Mar 17, 2016
- Messages
- 422
- Office Version
- 365
- Platform
- Windows
good morning all. if i am doing a "clear all" such as the code below, is there a way to do that and exclude a textbox from that?
Code:
Dim ctl For Each ctl In Me.Controls
If TypeOf ctl Is msforms.TextBox Then
ctl.Text = ""
End If
Next ctl