I have upgraded my project from vb6 to VB.NET. The project is used to generate pdf files.. while upgrading I'm getting following problem.
Code:
'UPGRADE_ISSUE: Constant vbUnicode was not upgraded. Click for more:
'ms-help://MS.VSCC.2003/commoner/redir/redirect.htm?keyword="vbup2070"' 'taptisColor = IIf(mvarEncodeASCII85, ToASCII85(ImgColor), StrConv(System.Text.UnicodeEncoding.Unicode.GetString(ImgColor), vbUnicode)) sColor = IIf(mvarEncodeASCII85, ToASCII85(ImgColor),
DecodeString(System.Text.Encoding.UTF8.GetString(ImgColor))) 'sColor = IIf(mvarEncodeASCII85, ToASCII85(ImgColor),
StrConv(System.Text.UnicodeEncoding.Unicode.GetString(ImgColor), VbStrConv.None))
The problem is that it displays a black coloured rect where it should display the image as logo.
Please help. What to do to resolve unicode upgrade problem?
Thanks!