Thread
: [Solved]
Disable email function of command button if all form fields are not completed
View Single Post
05-06-2016, 09:15 AM
derajlance
Windows 10
Office 2013
Novice
Join Date: May 2016
Posts: 18
I think another option would be something like this:
Code:
With ActiveDocument.FormFields("TextBox1") If Len(.Result) < 1 Then CommandButton1.Enabled = False
Not sure if that would work and if so, where it would need to go.
derajlance
View Public Profile
Find all posts by derajlance