http://www.newton-inc.com/dev/techinfo/qa/qa.htm
callbackID
parameter to the RegSoupChange
global function. If you also use your application's symbol as the callbackID
parameter, you will overwrite the NewtApp framework's registration. There are two ways to work around this problem.callbackID
symbol in your call to RegSoupChange
.NewtSoupChangedNotify
method is called. It is passed the same four parameters as the callback function parameter of RegSoupChange
.NewtSoupChangedNotify
method, be sure to call the inherited method. application:NewtSoupChangedNotify(theName, appSym, changeType, changeData)
begin
// Do your stuff here
inherited:?NewtSoupChangedNotify( theName, appSym, changeType, changeData );
end;