How I Remove Error Icon Form Text Box.
VB Code:
ErrorProvider.SetError (Textbox1 , "First Error") ErrorProvider.SetError (Textbox2 , "Second Error")
Now I Want Tor Remove Error Icon From TextBox1 Not From Textbox2. How? :confused:
Printable View
How I Remove Error Icon Form Text Box.
VB Code:
ErrorProvider.SetError (Textbox1 , "First Error") ErrorProvider.SetError (Textbox2 , "Second Error")
Now I Want Tor Remove Error Icon From TextBox1 Not From Textbox2. How? :confused:
Code:ErrorProvider.SetError (Textbox1 , "")
ErrorProvider.SetError (Textbox2 , "Second Error")
VB Code:
ErrorProvider.SetError (Textbox1 , "")
doh - you beat me to the punch!