text input method

  • Thread starter Thread starter Lloyd Dupont
  • Start date Start date
L

Lloyd Dupont

I'm writing my own text editor.
(from scratch, inherithing from Control).

Usingf Uniscribe I do a pretty good job of rendering international, bidi,
rich text.

But I have an input problem.
So far I was doing everything with ProcessDialogKey(Keys k) to get the
characters, but I only got values in Keys (and it's perfect for control key
such as arrow, delete, etc...).

So I wonder, how to get the characters?
Could I just use Control.OnKeyPress() to get all characters?
that is accentued one, asian one, arabic one, etc...
 
Back
Top