home *** CD-ROM | disk | FTP | other *** search
/ SuperHack / SuperHack CD.bin / CODING / DELPHI / RTCL.ZIP / RTCONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-11-28  |  1.3 KB  |  43 lines

  1. unit RtConst;
  2.  
  3. interface
  4.  
  5. {$R RtConst}
  6.  
  7. const
  8.    SRtConstBase         = 59000;
  9.    SNavFirst         = SRtConstBase+0;
  10.    SNavRW            = SRtConstBase+1;
  11.    SNavPrior         = SRtConstBase+2;
  12.    SNavNext          = SRtConstBase+3;
  13.    SNavFF            = SRtConstBase+4;
  14.    SNavLast          = SRtConstBase+5;
  15.    SNavInsert        = SRtConstBase+6;
  16.    SNavDelete        = SRtConstBase+7;
  17.    SNavEdit          = SRtConstBase+8;
  18.    SNavPost          = SRtConstBase+9;
  19.    SNavCancel        = SRtConstBase+10;
  20.    SNavRefresh       = SRtConstBase+11;
  21.    SNavBookmark      = SRtConstBase+12;
  22.    SNavGoto          = SRtConstBase+13;
  23.    SInvalidPropValue = SRtConstBase+14;
  24.    SInvalidCopyTbls  = SRtConstBase+15;
  25.    SNoIndex          = SRtConstBase+16;
  26.    SNoTable          = SRtConstBase+17;
  27.    SNoIDField        = SRtConstBase+18;
  28.    SDbGetIDFail      = SRtConstBase+19;
  29.    SNoDatabase         = SRtConstBase+20;
  30.    SNullProperty     = SRtConstBase+21;
  31.    SCreateView       = SRtConstBase+22;
  32.    SDropView         = SRtConstBase+23;
  33.    SLocalSQL         = SRtConstBase+24;
  34.    SSyntaxErrorMoveMode = SRtConstBase+25;
  35.    SSyntaxErrorAt       = SRtConstBase+26;
  36.    SSyntaxErrorToken    = SRtConstBase+27;
  37.    SUnknownParam        = SRtConstBase+28;
  38.    SSQLStmtEditor       = SRtConstBase+29;
  39.  
  40. implementation
  41.  
  42. end.
  43.