C
Cwhitmore
I'm trying to check for a condition in a text box on a form when the "done"
button is hit. It's telling me the second line has a syntax error. Can
someone help with this or direct me to some Outlook Coding tips on the web?
I'm using Exchange 2003 with Outlook 2003.
Sub DoneButton_Click 'Runs when DoneButton is clicked.
If TextBox2.Text <> ""
OptionButton2.Value = Yes
Endif
Item.Close(0) 'Close the form. (0) means don't ask for confirmation.
End Sub
button is hit. It's telling me the second line has a syntax error. Can
someone help with this or direct me to some Outlook Coding tips on the web?
I'm using Exchange 2003 with Outlook 2003.
Sub DoneButton_Click 'Runs when DoneButton is clicked.
If TextBox2.Text <> ""
OptionButton2.Value = Yes
Endif
Item.Close(0) 'Close the form. (0) means don't ask for confirmation.
End Sub