VB6.0 & MSacces2007: Unicode Fonts Printing

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • CyberSoftHari
    Recognized Expert Contributor
    • Sep 2007
    • 488

    VB6.0 & MSacces2007: Unicode Fonts Printing

    How to Print Unicode Chars from Ms access 2007 database to Notepad. It is always printing like "?????????? ? ??????"
    Example:
    Code:
    Open "F:\Test.txt" For Output As #intFileNo
    Print #intFileNo, ChrW(1949) 'I stored as char
    Close #intFileNo
    Answer:
    Code:
    [b]
    ?
    [/b]
    Thanks.
Working...