I was able to get my Windows Phone (7.8) to show up as a mass storage device using the steps.
http://nokiarevolution.com/tricks-and-tips/usb-storage-enabler-for-windows-phones-77-8/
Leave a CommentI was able to get my Windows Phone (7.8) to show up as a mass storage device using the steps.
http://nokiarevolution.com/tricks-and-tips/usb-storage-enabler-for-windows-phones-77-8/
Leave a CommentHere is a regular expression for credit card numbers.
string ccRegEx = @"^(?:4[0-9]{12}(?:[0-9]{3})?|5[1-5][0-9]{14}|6(?:011|5[0-9][0-9])[0-9]{12}|3[47][0-9]{13}|3(?:0[0-5]|[68][0-9])[0-9]{11}|(?:2131|1800|35\d{3})\d{11})$";Leave a Comment
Below is the regex code for U.S. and Canadian zip codes. I’m don’t remember where I found these but hopefully someone finds them useful.
string _usZipRegEx = @"^\d{5}(?:[-\s]\d{4})?$"; string _caZipRegEx = @"^([ABCEGHJKLMNPRSTVXY]\d[ABCEGHJKLMNPRSTVWXYZ])\ {0,1}(\d[ABCEGHJKLMNPRSTVWXYZ]\d)$";Leave a Comment
I was able to upgrade my Windows Phone from 7.5 to 7.8 using the solution below. The entire installation took a little under an hour. I had a Samsung Focus 2. So far I have not had any problems.
http://windowsphonehacker.com/articles/want_windows_phone_7.8_now_try_this_easy_tool-01-31-13
Leave a Comment