View Single Post
  #4 (permalink)  
Old 09-09-2008, 8:24 AM
JohnH's Avatar
JohnH JohnH is offline
VB.NET Forum Moderator
.NET Framework: .NET 3.5 (VS 2008)
 
Join Date: Dec 2005
Location: Norway
Age: 37
Posts: 10,303
Reputation: 1315
JohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond reputeJohnH has a reputation beyond repute
Default

Areas in application to look into is where input/output happens either for text controls, text files or database text fields. If you use database with text column you must verify that these are unicode fields (Ntext etc). Otherwise VS uses unicode by default in most cases, usually Utf-8. For streamreaders/writers you can specify encoding, default is utf8, but you can also tell them to use Encoding.Default which is "the operating system's current ANSI code page", and for streamreaders detectEncodingFromByteOrderMarks can also be used when applied.
__________________
Reply With Quote