I am getting few special characters from Excel to Collection (As it is) but when I am writing back to excel then they are converting into some other character i.e '?' . Pls advise what should I do?
------------------------------ Ravi Kumar Sr Automation Designer Ericsson Asia/Kolkata ------------------------------
Thanks Murli, It worked with below code- Dim data As String = Nothing With New Threading.Thread(Sub() data = Clipboard.GetDataObject().GetData(DataFormats.UnicodeText, True)) .SetApartmentState(Threading.ApartmentState.STA) .Start() .Join() End With
------------------------------ Ravi Kumar Sr Automation Designer Ericsson Asia/Kolkata ------------------------------