home *** CD-ROM | disk | FTP | other *** search
/ PC Expert 29 / Pce29cd.iso / RUNIMAGE / DELPHI40 / DEMOS / EXPERTS / EXCONST.PAS < prev    next >
Pascal/Delphi Source File  |  1998-06-16  |  1KB  |  55 lines

  1. unit Exconst;
  2.  
  3. interface
  4.  
  5. const
  6.   { string contants - pulled out of exptres.res }
  7.   sDlgExpertName        = 11001;
  8.   sDlgExpertDesc        = 11002;
  9.   sAppExpertName        = 11003;
  10.   sAppExpertDesc        = 11004;
  11.   sFinish               = 11005;
  12.   sNext                 = 11006;
  13.   sAppNameRequired      = 11007;
  14.   sInvalidAppName       = 11008;
  15.   sInvalidPath          = 11009;
  16.   sMainSourceFile       = 11010;
  17.   sMainFormFile         = 11011;
  18.   sMainFormText         = 11012;
  19.  
  20.   { variable names }
  21.   sStatusLine           = 11020;
  22.   sOpenDialog           = 11021;
  23.   sSaveDialog           = 11022;
  24.   sMainMenu             = 11023;
  25.   sMainForm             = 11024;
  26.   sSpeedButton          = 11025;
  27.   sPrintDialog          = 11026;
  28.   sPrintSetupDialog     = 11027;
  29.   sSpeedBar             = 11028;
  30.  
  31.   { misc method names }
  32.   sShowHelpProc         = 11030;
  33.   sFormCreateProc       = 11031;
  34.  
  35.   sOKButton             = 11050;
  36.   sCancelButton         = 11051;
  37.   sHelpButton           = 11052;
  38.  
  39.   sMenuTextBase         = 11080;  { menu captions  }
  40.   sMenuNameBase         = 11090;  { names of the menus }
  41.  
  42.   sMenuItemTextBase     = 11100; { captions of menu items }
  43.   sMenuItemNameBase     = 11200; { names of menu items }
  44.  
  45.   sMenuProcNames        = 11300; { methods for menu items }
  46.  
  47.   sHintBase             = 11400; { base for speedbutton hints }
  48.  
  49.   sDialogsPage          = 11500;
  50.   sProjectsPage         = 11501;
  51.   
  52. implementation
  53.  
  54. end.
  55.