home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1997 April
/
Chip_1997-04_cd.bin
/
prezent
/
cb
/
data.z
/
EXCONST.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1997-01-16
|
1KB
|
56 lines
unit Exconst;
interface
const
{ string contants - pulled out of exptres.res }
sDlgExpertName = 1;
sDlgExpertDesc = 2;
sAppExpertName = 3;
sAppExpertDesc = 4;
sFinish = 5;
sNext = 6;
sAppNameRequired = 7;
sInvalidAppName = 8;
sInvalidPath = 9;
sHdrSourceFile = 10;
sMainSourceFile = 11;
sMainFormFile = 12;
sMainFormText = 13;
{ variable names }
sStatusLine = 20;
sOpenDialog = 21;
sSaveDialog = 22;
sMainMenu = 23;
sMainForm = 24;
sSpeedButton = 25;
sPrintDialog = 26;
sPrintSetupDialog = 27;
sSpeedBar = 28;
{ misc method names }
sShowHelpProc = 30;
sFormCreateProc = 31;
sOKButton = 50;
sCancelButton = 51;
sHelpButton = 52;
sMenuTextBase = 80; { menu captions }
sMenuNameBase = 90; { names of the menus }
sMenuItemTextBase = 100; { captions of menu items }
sMenuItemNameBase = 200; { names of menu items }
sMenuProcNames = 300; { methods for menu items }
sHintBase = 400; { base for speedbutton hints }
sDialogsPage = 500;
sProjectsPage = 501;
implementation
end.