home *** CD-ROM | disk | FTP | other *** search
/ Chip 2000 February / Chip_2000-02_cd.bin / zkuste / Delphi / navody / tt / objvm.exe / SAMPLE / LangFileUtils.pas < prev    next >
Pascal/Delphi Source File  |  1998-05-31  |  919b  |  47 lines

  1. unit LangFileUtils;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs,
  7.   LangValue, VisualValue, LangProc;
  8.  
  9. type
  10.   TFileUtils = class(TDataModule)
  11.     ExecProc: TLangProc;
  12.     procedure ExecProcExec(Sender: TVisualValue; S: IValStack;
  13.       MustReturn: Boolean);
  14.   private
  15.     { Private declarations }
  16.   public
  17.     { Public declarations }
  18.   end;
  19.  
  20. var
  21.   FileUtils: TFileUtils;
  22.  
  23. implementation
  24.  
  25. uses uRunTime,VarLangValue,RxShell;
  26.  
  27. {$R *.DFM}
  28.  
  29.  
  30. procedure TFileUtils.ExecProcExec(Sender: TVisualValue; S: IValStack;
  31.   MustReturn: Boolean);
  32. Var v:TVarLangValue;
  33. begin
  34.   FileExecute(s.FrameValues[0].AsString,
  35.               s.FrameValues[1].AsString,s.FrameValues[2].AsString,
  36.               esNormal);
  37.   s.DropFrame;
  38.   if MustReturn then
  39.   begin
  40.     v:=TVarLangValue.Create(nil);
  41.     v.AsBoolean:=True;
  42.     s.Push(v);
  43.   end;
  44. end;
  45.  
  46. end.
  47.