From my E-mail app i get the subject as
Subject = "=?ISO-8859-1?B?RW1uZSDm+OXG2MU=?="
Dim arrBytes() As Byte
Dim Var As String
Dim Result As String
Var = Subject
arrBytes = Var.GetBytes("ISO-8859-1")
Result = BytesToString(arrBytes,0,arrBytes.Length, "ISO-8859-1")
'Result is still.. "=?ISO-8859-1?B?RW1uZSDm+OXG2MU=?="
What is the problem.. ??
Subject = "=?ISO-8859-1?B?RW1uZSDm+OXG2MU=?="
Dim arrBytes() As Byte
Dim Var As String
Dim Result As String
Var = Subject
arrBytes = Var.GetBytes("ISO-8859-1")
Result = BytesToString(arrBytes,0,arrBytes.Length, "ISO-8859-1")
'Result is still.. "=?ISO-8859-1?B?RW1uZSDm+OXG2MU=?="
What is the problem.. ??