In Visual Studio I want to use a character which is composed of a dead key plus another key.
I type this : ` + e -> è
VS takes it as : 96 + 101 -> 232 ( and only shows 232)
or in HEx : 0060 + 0065 -> 00e8 ( and only shows 00e8 )
My problem now is that I want to be able to have access to both input key strokes ( eg 96 / 101 ) not the combined. (232) . How do I do that?
In addition I need to be able to distinguish other dead keys like backspace, linefeed, etc.