hey
im trying to make a my button save enabled only if all txtboxes are filed and comboxes are choosen
i tried something like this only form the txt but its not working
offcurse i need for the combobox to
im trying to make a my button save enabled only if all txtboxes are filed and comboxes are choosen
i tried something like this only form the txt but its not working
Code:
Dim x As Integer
Dim a As Boolean
a = "True"
For x = 1 To 5
If Txt(x) = "" Then
a = "False"
End If
Next
If a = "False" Then
BttnSave.Enabled = False
End If