home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 1999 February / DPPCPRO0299.ISO / February / Delphi / Install / DATA.Z / EXCONST.PAS < prev    next >
Encoding:
Pascal/Delphi Source File  |  1996-06-11  |  1.4 KB  |  55 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.   sFinish               = 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.   sOKButton             = 50;
  36.   sCancelButton         = 51;
  37.   sHelpButton           = 52;
  38.   
  39.   sMenuTextBase         = 80;  { menu captions  }
  40.   sMenuNameBase         = 90;  { names of the menus }
  41.  
  42.   sMenuItemTextBase     = 100; { captions of menu items }
  43.   sMenuItemNameBase     = 200; { names of menu items }
  44.  
  45.   sMenuProcNames        = 300; { methods for menu items }
  46.  
  47.   sHintBase             = 400; { base for speedbutton hints }
  48.  
  49.   sDialogsPage          = 500;
  50.   sProjectsPage         = 501;
  51.   
  52. implementation
  53.  
  54. end.
  55.