home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 67 / IOPROG_67A.ISO / soft / Tools / mwsppv4.exe / ONPRESTARTUPVISUALBASICFILES.SCRIPT < prev    next >
Encoding:
Text File  |  2002-08-25  |  595 b   |  26 lines

  1. !!Script
  2. // Copyright ⌐ 1997-2002 - Modelworks Software
  3.  
  4. /**
  5. @Notify: onPrestartupVisualBasicFiles~adds support Visual Basic file type.
  6. @EndTool:
  7. @Summary: onPrestartupVisualBasicFiles~adds support Visual Basic file type
  8. */
  9.  
  10. function OnNotify()
  11. {
  12.     var output = getOutput();
  13.     var logEvents = getGlobal("LogEvents", false);
  14.     if (logEvents)
  15.     {
  16.         output.writeLine("Running onPrestartupVisualBasicFiles");
  17.     }
  18.     
  19.     var documentTemplate = Application.createDocumentType("Visual Basic file", "", 
  20.         "vs (*.vs)", ".vb", ".vbs", "");
  21.  
  22. }
  23.  
  24. !!/Script
  25.  
  26.