Notification must popup

Errods

Well-known member
Joined
Dec 17, 2007
Messages
71
Location
Kundapur, Karnataka, Udupi, India.
Programming Experience
1-3
Hi All,

I have a form where the user inputs data........:)

Here some fields are manatory.......:)

My problem is if the user has not enterd any info\Text in the Mandatory fields a Notification must popup right next to it just like a Notification which appears in the Taskbar....... I suppose its called BaloonTip or something like that........:confused:

Any ideas guys on how to achive this Guys........:):):):):):):):):)
 
It would be better to use an ErrorProvider, which is specifically intended for this type of thing. That way if there are multiple fields in error the user will see them all at once, rather than having click the Button repeatedly. You would set the error message in the Validating event handler for each control and call ValidateChildren on your form before submitting.
 
Note that if you really want to do as you originally suggested you can use a ToolTip component, which can be displayed as a balloon. You should read the MSDN documentation for the ErrorProvider and/or ToolTip classes for more information.
 
Back
Top