home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Devil's Doorknob BBS Capture (1996-2003)
/
devilsdoorknobbbscapture1996-2003.iso
/
Dloads
/
OTHERUTI
/
TPASCAL3.ZIP
/
TVDEMOS.ZIP
/
FORMCMDS.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1991-06-11
|
1KB
|
50 lines
{************************************************}
{ }
{ Turbo Pascal 6.0 }
{ Turbo Vision Forms Demo }
{ Copyright (c) 1990 by Borland International }
{ }
{************************************************}
unit FormCmds;
{$D-}
interface
uses Drivers;
const
{ Misc UI commands }
cmAboutBox = 2000;
cmChangeDir = 2001;
cmVideoMode = 2002;
cmDosShell = 2003;
{ List & form-oriented commands }
{ (Cannot be disabled) }
cmListOpen = 3000;
cmListSave = 3001;
cmFormEdit = 3002;
cmFormNew = 3003;
cmFormSave = 3004;
cmFormDel = 3005;
{ Broadcast commands }
cmTopForm = 3050;
cmRegisterForm = 3051;
cmEditingForm = 3052;
cmCanCloseForm = 3053;
cmCloseForm = 3054;
cmTopList = 3055;
cmEditingFile = 3056;
{ History list IDs }
hlChangeDir = 1;
hlOpenListDlg = 2;
implementation
end.