home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 April / Chip_1997-04_cd.bin / prezent / cb / data.z / EXCONST.PAS < prev    next >
Pascal/Delphi Source File  |  1997-01-16  |  1KB  |  56 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.   sHdrSourceFile        = 10;
  17.   sMainSourceFile       = 11;
  18.   sMainFormFile         = 12;
  19.   sMainFormText         = 13;
  20.  
  21.   { variable names }
  22.   sStatusLine           = 20;
  23.   sOpenDialog           = 21;
  24.   sSaveDialog           = 22;
  25.   sMainMenu             = 23;
  26.   sMainForm             = 24;
  27.   sSpeedButton          = 25;
  28.   sPrintDialog          = 26;
  29.   sPrintSetupDialog     = 27;
  30.   sSpeedBar             = 28;    
  31.  
  32.   { misc method names }
  33.   sShowHelpProc         = 30;
  34.   sFormCreateProc       = 31;
  35.  
  36.   sOKButton             = 50;
  37.   sCancelButton         = 51;
  38.   sHelpButton           = 52;
  39.   
  40.   sMenuTextBase         = 80;  { menu captions  }
  41.   sMenuNameBase         = 90;  { names of the menus }
  42.  
  43.   sMenuItemTextBase     = 100; { captions of menu items }
  44.   sMenuItemNameBase     = 200; { names of menu items }
  45.  
  46.   sMenuProcNames        = 300; { methods for menu items }
  47.  
  48.   sHintBase             = 400; { base for speedbutton hints }
  49.  
  50.   sDialogsPage          = 500;
  51.   sProjectsPage         = 501;
  52.   
  53. implementation
  54.  
  55. end.
  56.