Hi, I'm validating some labels using ErrorProvider. It produces a neat notification icon on the right side of the label control.
Is there a way to show the icon on the left hand side of the label control instead?
Printable View
Hi, I'm validating some labels using ErrorProvider. It produces a neat notification icon on the right side of the label control.
Is there a way to show the icon on the left hand side of the label control instead?
VB Code:
errorProvider1.SetIconAlignment(Label1, System.Windows.Forms.ErrorIconAlignment.MiddleLeft ) errorProvider1.SetError(Label1, "Testing");
Ahh, foolishly simple...