Converting cyrillic to western characters

V

val

I have an Access 2002 table formated with Arial unicode
MS. One field contains a Russian file name in cyrillic.

I am trying to convert that filename into western
characters:

source:"ПНМ-БП-ПЗ-ВСП-ОБ-ОД-001"

using:
strDocNumber = MySet("DocNo")
produces "???-??-??...."
strDocNumber = StrConv(MySet("docno"), vbUnicode)
produces "□□□□□□-□□□□-......."

Is there a way of doing this?
 
Top