events on IBCAlert

Discussion of open issues, suggestions and bugs regarding IBDAC (InterBase Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
felixinasa
Posts: 7
Joined: Sat 05 Apr 2014 07:39

events on IBCAlert

Post by felixinasa » Thu 10 Apr 2014 08:52

Hello

it´s posible to add more that one event on IBCAlert?

thanks

PavloP
Devart Team
Posts: 149
Joined: Fri 24 Jan 2014 12:33

Re: events on IBCAlert

Post by PavloP » Fri 11 Apr 2014 09:27

Yes, it is possible. For example, in the following way:

Code: Select all

  IBCAlerter1.Events.Add('EVENT1');
  IBCAlerter1.Events.Add('EVENT2');
More details about the TIBCAlerter component can be found in our documentation: http://www.devart.com/ibdac/docs/index. ... lerter.htm

Post Reply