According to the Jesse Bishop blog , he implemented some gestures and I modified the code to support the Hold gesture so if you made hold for x seconds the object will be notified with this event
I will publish the code soon
According to the Jesse Bishop blog , he implemented some gestures and I modified the code to support the Hold gesture so if you made hold for x seconds the object will be notified with this event
I will publish the code soon
Posted in Silverlight | Tags: Silverlight Touch
I used this regular expressions in my project and i think it will be useful if someone need it
first letter capital without underscore support
\p{Lu}(\W*\p{Ll}*|\d*)*(\s+(\W*\p{Ll}*|\d*)*)*
with underscore support
\p{Lu}(\W*[_]*\p{Ll}*|\d*)*(\s+(\W*\p{Ll}*|\d*)*)*
first letter capital and can start with special characters and nos.
((\p{Lu}(\W*[_]*\p{Ll}*|\d*)*)|((\d|\W|[_])(\p{Ll}*|\d*)*)*)(\s+(\W*\p{Ll}*|\d*)*)*
Posted in Regular Expressions | Tags: regular expression first letter capital
I started today to prepare to my first andorid project , I will post series to develop an andorid application that connect to WCF Services
I will post the tool used, then I will go through the application
Recent Comments