Subject events not working in fb 2.0
Author martinknappe
hi,

i'd been using fb 1.5 and i've just installed fb 2.0 and all of a
sudden fb events seem not to work anymore

i haven't changed my delphi client; access to the db is still working
but no events are posted..it looks like the following:

this is the event trigger:

CREATE trigger dicentries_au1 for dicentries
active before update position 1
as
begin
post_event 'Event';
end


then this is my tibevents component:

object IBEvents1: TIBEvents
AutoRegister = True
Database = IBDatabase1
Events.Strings = (
'Event')
Registered = False
OnEventAlert = IBEvents1EventAlert
Left = 376
Top = 312
end


and this is the handler:

procedure TForm1.IBEvents1EventAlert(Sender: TObject; EventName: String;
EventCount: Integer; var CancelAlerts: Boolean);
begin
showmessage(eventname);
end;

after an update of dicentries i should get a dialog with the eventname
"Event". but nothing happens! in fb 1.5 the exact same code does the
trick? any changes as regards events programming in fb 2.0 ?

thanx,

martin