Click here to Skip to main content
15,886,806 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Can We Handle Many Textboxes with help of One Label,mean If there are (Cell NO ,Email,Name)Validations and we want to handle all validations through one label.Have Any Simple Code.
Posted
Comments
Sergey Alexandrovich Kryukov 17-Jan-13 3:28am    
Not clear at all.
—SA

1 solution

You cannot do data entry on labels. You would only be accessing readonly data via labels.

To solve your problem, what you could do is display readonly data on a label and separate them via a delimiter character e.g. a comma. You could split the text via String.Split and then validate all data one by one.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900