Article # 194, added by Geoworks, historical record
| first | previous | index | next | last |

Sending classed events in IACP



When specifying a class in your recorded message, only use
system defined classes.  Subclasses specific to your application
may not work properly.

For example, if the server (remote) application has defined
HappyApplicationClass, which is a subclass of GenApplicationClass,
you will want to specify GenApplicationClass in the event you 
@record.

For example, the following is WRONG:

    sendEvent = @record HappyApplicationClass::MSG_HAPPY_DO_SMILE();

while this is CORRECT:

    sendEvent = @record GenApplicationClass::MSG_HAPPY_DO_SMILE();