CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Dec 2008
    Posts
    20

    combining diacritical marks

    hi I am designing an editor program. I am using ChrW() and AscW() functions to print the character on screen. I want to implement combining diacritical marks(or accent marks) i-e if i print a character and then i want to put diacritic on it by using specific key then i shud be able to place diacritic above or below that character so that they appear as one character. Is there any way to accomplish this in vb?

  2. #2
    Join Date
    Dec 2008
    Posts
    19

    Re: combining diacritical marks

    That would be tricky at best. Each character takes up a full space even if sub or super scripted.

    Since unicode is apparently important in your editor, you are better off using unicode fonts. There are many like the Arial Unicode, that are standard on all computers (Sample: ÃÈü&#241 and the characters are available through the extended character set using AscW.

  3. #3
    Join Date
    Dec 2008
    Posts
    20

    Re: combining diacritical marks

    I hav developed my own fonts using ScanFont and FontLab so i need help accordingly

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