The problem I am having is when the user opens the form, an ultracombo box gets focus.
The text in it is "pick me"
In my validation I have:
if
(ucActivity.Text == "Pick Me")
e.Cancel = true;
when the user hit's a different button, the form does nothing. It's not responsive because it doesn't validate. Is there a way to intercept the buttonclick on a particular button and ignore the validation?
Try setting CausesValidation on the button to false.