I'm new to msdn forums and hope that this question is posted in the correct group.
How can I upgrade the following VBA code to VB.NET
StrConv(ByteArray, vbUnicode)
Thanks, Simon
I'm new to msdn forums and hope that this question is posted in the correct group.
How can I upgrade the following VBA code to VB.NET
StrConv(ByteArray, vbUnicode)
Thanks, Simon
Upgrade VBA StrConv Byte Array vbUnicode ToString
DKB
StrConv(ByteArray, vbUnicode)
was this in vb.net
System.Text.Encoding.GetEncoding(1252).GetString(ByteArray)
CharissaJB123
I would like to thank you for this finding , you have saved my 8 man days of work !!
Thanks a lot .
Randhir
Fusion54