home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 February / PCWorld_1999-02_cd.bin / software / Zkuste / WinBat98 / WBT.MN_ < prev    next >
Text File  |  1998-09-27  |  460b  |  18 lines

  1. ; Menu file for wbt extension
  2.  
  3. Run with WinBatch     ; Runs the Winbatch Interpreter on this file
  4.         f = strcat('"',CurrFilePath(),'"')
  5.         Run("winbatch.exe",f)
  6.  
  7. WinBatch Studio    ; Edit the Winbatch file
  8.         f = strcat('"',CurrFilePath(),'"')
  9.         Run("WinBatch Studio.exe", f)
  10.  
  11. WinBatch Compiler  ;Run the WinBatch Compiler
  12.         f=strcat('"',CurrFilePath(),'"')
  13.         Run("WBCompiler.exe",f)
  14.                 
  15.    
  16.   
  17.  
  18.