home *** CD-ROM | disk | FTP | other *** search
/ Delphi Anthology / aDELPHI.iso / Runimage / Delphi50 / Source / Samples / ibconst.pas < prev    next >
Pascal/Delphi Source File  |  1999-08-11  |  787b  |  19 lines

  1. unit IBConst;
  2.  
  3. interface
  4.  
  5. resourcestring
  6.   srSamples = 'Samples';
  7.   SNoEventsRegistered  = 'You must register events before queueing them';
  8.   SInvalidDBConnection = 'Component is not connected to an open Database';
  9.   SInvalidDatabase     = '''''%s'''' is not connected to an InterBase database';
  10.   SInvalidCancellation = 'You cannot call CancelEvents from within an OnEventAlert handler';
  11.   SInvalidEvent        = 'Invalid blank event added to EventAlerter events list';
  12.   SInvalidQueueing     = 'You cannot call QueueEvents from within an OnEventAlert handler';
  13.   SInvalidRegistration = 'You cannot Register or Unregister events from within an OnEventAlert handler';  SMaximumEvents       = 'You can only register 15 events per EventAlerter';
  14.  
  15. implementation
  16.  
  17. end.
  18.   
  19.