home *** CD-ROM | disk | FTP | other *** search
/ PC Format Collection 48 / SENT14D.ISO / tech / delphi / disk15 / experts.pak / EXCONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1995-08-24  |  1.2 KB  |  48 lines

  1. unit Exconst;
  2.  
  3. interface
  4.  
  5. const
  6.   { string contants - pulled out of exptres.res }
  7.   sDlgExpertName        = 1;
  8.   sDlgExpertDesc        = 2;
  9.   sAppExpertName        = 3;
  10.   sAppExpertDesc        = 4;
  11.   sCreate               = 5;
  12.   sNext                 = 6;
  13.   sAppNameRequired      = 7;
  14.   sInvalidAppName       = 8;
  15.   sInvalidPath          = 9;
  16.   sMainSourceFile       = 10;
  17.   sMainFormFile         = 11;
  18.   sMainFormText         = 12;
  19.  
  20.   { variable names }
  21.   sStatusLine           = 20;
  22.   sOpenDialog           = 21;
  23.   sSaveDialog           = 22;
  24.   sMainMenu             = 23;
  25.   sMainForm             = 24;
  26.   sSpeedButton          = 25;
  27.   sPrintDialog          = 26;
  28.   sPrintSetupDialog     = 27;
  29.   sSpeedBar             = 28;    
  30.  
  31.   { misc method names }
  32.   sShowHelpProc         = 30;
  33.   sFormCreateProc       = 31;
  34.  
  35.   sMenuTextBase         = 80;  { menu captions  }
  36.   sMenuNameBase         = 90;  { names of the menus }
  37.  
  38.   sMenuItemTextBase     = 100; { captions of menu items }
  39.   sMenuItemNameBase     = 200; { names of menu items }
  40.  
  41.   sMenuProcNames        = 300; { methods for menu items }
  42.  
  43.   sHintBase             = 400; { base for speedbutton hints }
  44.  
  45. implementation
  46.  
  47. end.
  48.