home *** CD-ROM | disk | FTP | other *** search
- { TCMDSET.PAS }
- { Example using TCommandSet, from TVSHELL8.PAS }
- var
- CommandsOn : TCommandSet;
- CommandsOff : TCommandSet;
- ...
- CommandsOn := [cmUseDOS, cmDelete];
- CommandsOff := CommandsOn;
-
- if (SetUpData.ProgOptions and 2) = 2 then
- CommandsOff := CommandsOff - [cmUseDOS];
-
- if (SetUpData.ProgOptions and 4) = 4 then
- CommandsOff := CommandsOff - [cmDelete];
-
- CommandsOn := CommandsOn - CommandsOff;
-
- DisableCommands( CommandsOff );
- EnableCommands( CommandsOn );
-
-