A
Alansa59
Could someone please help me with the correct syntax for the "IF, Then: Else:
" command
" command
Alansa59 said:Could someone please help me with the correct syntax for the "IF, Then:
Else:
" command
Alansa59 said:I have a form that all the text boxes need to be filled in before it is
saved
using a button "SUBMIT/CLOSE".
Below is the code I attempted to use and it comes up with "Error, Else
without If
If IsNull(Opened_Date) And IsNull(Start_Date) Then cmdSUBMIT_CLOSE.Enabled
=
True
Else: cmdSUBMIT_CLOSE = False
End If
I have a form that all the text boxes need to be filled in before it is saved
using a button "SUBMIT/CLOSE".
Below is the code I attempted to use and it comes up with "Error, Else
without If
If IsNull(Opened_Date) And IsNull(Start_Date) Then cmdSUBMIT_CLOSE.Enabled =
True
Else: cmdSUBMIT_CLOSE = False
End If
Alansa59 said:Stuart thanks a ton . I have another problem. I would like to use that
same
control to generate an Outlook email and attach the form that the control
is
part of, to the email. Any ideas?