Re: geos-dev-digest V1 #140

CamiLee@aol.com
Mon, 18 Nov 1996 11:23:07 -0500

In a message dated 96-11-18 02:49:14 EST, you write:

> I'm trying to catch MSG_META_KBD_CHAR in my subclass of VisLargeTextClass.
> It works just fine for normal keys, but keys like tab and enter don't get
> caught. Here's what I'm doing. KeyMonitor is a GenValue to show the value
of
> character being passed. When I press tab, it adds a tab instead of two
> spaces. When I press enter or backspace, the GenValue changes to 0. That
> means it's being sent, but not in character. How do I catch those keys?
>

This works find for me under that message:

if(byteChar == C_TAB )
If you want to test for Enter test for "C_ENTER".

Lee