Unicode Support in vb 6.0

  • Thread starter Thread starter vishruth
  • Start date Start date
this is not the VB 6 newsgroup, this is for VB.NET, and please stop multi
posting it will not help you.. try searching on google, you will find more
then you will hear, being you are in the wrong place to start with..
 
I have spent a lot of time in this area, here is what I've found
VB6 controls are NOT Unicode
VB6 internally uses unicode strings
Going in and out of VB6 automatically converts strings from unicode to ansi
which will screw you up badly,
SO always use byte arrays on controls like Winsock or MSComm.
Use byteArrays for Windows API's
 
Back
Top