CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2009
    Posts
    4

    Using ASCII Extended Table

    Hey guys, I'm messing around a little bit with making my own sort of encryption. The string thats entered is changed into its ascii decimal equivalent, put to an algorithm, then the new ascii character is displayed. That all works, but now I'm trying to create a decrypt function and when I enter those extended ASCII characters to be decrypted, it gives me "warning C4566: character represented by universal-character-name", and all that are displayed are ?'s. Anyone know how to fix this so I can use extended ASCII characters?

  2. #2
    Join Date
    May 2002
    Posts
    1,435

    Re: Using ASCII Extended Table

    That error should be generated if UNICODE characters are assigned to a 'char' type, but extended ASCII should be alright. You should probably post your code.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured