Click here to Skip to main content
15,886,873 members

Videos


1. Convert a string to UTF-16
This Function allows you to convert a normal string to UTF-16 encoding in VB.NET. You can find tools like Unicode Code Converter that operate like ConvertToUTF16 function.' if you pass this parameter to function : "I'm from Azerbaijan."' the return value is :...
Programming Languages » Visual Basic »
Ehsan Valizadeh Updated: 28 Mar 2010
Rating: 3.67/5 ( (3 votes))
2. Validate password strength on the server side
This code will validate a password on the server side. ;) Imports System.Text.RegularExpressionsPublic Class PasswordAdvisor Enum PasswordScore Blank = 0 VeryWeak = 1 Weak = 2 Medium = 3 Strong = 4 VeryStrong = 5 End Enum ...
Programming Languages » Visual Basic »
Ehsan Valizadeh Updated: 9 Jan 2010
Rating: 4.00/5 ( (1 vote))