Click here to Skip to main content
15,902,777 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
If the project to download has no .dll like this one (i.e)
http://www.codeproject.com/KB/cs/TexboxValidation/textboxvalidation_src.zip[^]

Thank you!
Posted

1 solution

Technically you can even include executable as assambly and load it as reference. But it would be too dirty :) So you have two ways to follow: include the files you need in your project and use their namespace or refactor the sample app into a class library, using only parts that you need. But don't forget to be in accordance with the license.
 
Share this answer
 
Comments
troymcfont 2-Jun-12 9:00am    
I've used the namespace and it's ok. But is there another way to do it?
I'd like to have just my namespace in the project, so how can I do it with just
using "using ...". With the second way u explained?
Zoltán Zörgő 2-Jun-12 9:13am    
Now I have looked at the code you linked. That is not to be included directly. As all validation routines are "TextChanged" event handlers, you just have to copy the needed code in a separate class (or class library), and just add them to textbox event queues as needed.
troymcfont 2-Jun-12 18:14pm    
And how can I do this? Sry for my ignorance!

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