home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 April / PCWorld_2000-04_cd.bin / Software / TemaCD / winedit / wshhlp.we_ < prev    next >
Text File  |  1999-04-13  |  5KB  |  66 lines

  1. ;
  2. ; In this type of HelpFile (Type 1 - Quick and Dirty MessageBoxes) the tilde
  3. ; symbol  -> ~ <- is used to indicate line breaks.  See examples below.
  4. [LOOKUP]
  5. Located=C:\PROGRAM FILES\WE98BETA\HELP\WSHHLP.WEH
  6.  
  7.  
  8. [Keywords]
  9. Wscript=Windows Scripting Host scripting engine
  10. Cscript=The command line Windows Scripting Host scripting engine (to pass parameters to WSH.)
  11. WshShell=Object provided by WSHom.Ocx.~Automation object, ProgID "Wscript.WshShell."
  12. WshNetwork=Object provided by WSHom.Ocx.~Automation object, ProgID "Wscript.WshNetwork."
  13. WshShortcut=Object provided by WSHom.Ocx.~Not exposed; accessed through WshShell.CreateShortcut method.
  14. WshUrlShortcut=Object provided by WSHom.Ocx.~Not exposed; accessed through WshShell.CreateShortcut method.
  15. WshCollection=Object provided by WSHom.Ocx.~Not exposed; accessed through WshNetwork.EnumNetworkDrives~or WshNetwork.EnumPrinterConnection.
  16. WshEnvironment=Object provided by WSHom.Ocx.~Not exposed; accessed through WshShell.Environment property.
  17. WshSpecialFolders=Object provided by WSHom.Ocx.~Not exposed; accessed through WshShell.Folder property.
  18. Application=The IDispatch interface for Wscript.
  19. Arguments=A parameters collection object.
  20. FullName=Full path to the host executable.
  21. Name=Friendly name of Wscript (the default property).
  22. Path=Name of the directory where Wscript.exe or Cscript.exe resides.
  23. ScriptFullName=Full path to the script being run by the Windows Scripting Host.
  24. ScriptName=File name of the script being run by the Windows Scripting Host.
  25. Version=A version string for the Windows Scripting Host.
  26. CreateObject=Creates an object and establishes its event handling.
  27. DisconnectObject=Disconnects a previously connected object from Windows Scripting Host.
  28. Echo=Displays parameters in a window or at a command prompt in a Command Prompt window.
  29. GetObject=Retrieves an Automation object from a file.
  30. Quit=Quits execution with a specified error code.
  31. Application=The Application property provides the IDispatch interface on the Wscript object.~Syntax~Wscript.Application = objWscript 
  32. Arguments=The Arguments property provides a WshArguments collection object.~Syntax~Wscript.Arguments = objArguments
  33. FullName=The FullName property provides a string containing the full path to the host executable.~Syntax ~Wscript.FullName = strFullName 
  34. Name=The Name property provides a string containing the friendly name of the Wscript object. This is the default property.~Syntax~Wscript.Name = strName
  35. Path=The Wscript.Path property provides a string containing the name of the directory where Wscript.Exe or Cscript.Exe resides.~Syntax~Wscript.Path = strPath
  36. ScriptFullName=The ScriptFullName property provides the full path to the script being run by the Windows Scripting Host.~Syntax~Wscript.ScriptFullName = strScriptFullName 
  37. ScriptName=The ScriptName property provides the file name of the script being run by the Windows Scripting Host.~Syntax~Wscript.ScriptName = strScriptName
  38. Version=The Version property provides a version string for the Windows Scripting Host.~Syntax~Wscript.Version = strVersion
  39. CreateObject=The CreateObject method creates an object specified by the strProgID parameter.~If the parameter strPrefix is specified, Windows Scripting Host connects~the object's outgoing interface to the script file after creating the object.~When the object fires an event, Windows Scripting Host calls a subroutine named strPrefix and the event~name. For example, if strPrefix is "MYOBJ_" and the object fires an event named "OnBegin," Windows Scripting Host~calls the "MYOBJ_OnBegin" subroutine located in the script. ~Syntax ~Wscript.CreateObject(strProgID, [strPrefix]) = objObject 
  40. DisconnectObject=The DisconnectObject method disconnects a previously connected object (obj) from Windows Scripting Host. If~the specified object is not already connected to Windows Scripting Host, this method does nothing. ~Syntax ~Wscript.DisconnectObject obj
  41. Echo=The Echo method displays parameters in a window (in Wscript.exe) or at the command prompt in a Command~Prompt window (in Cscript.exe). ~Parameters are delimited by one space. Under Cscript.exe, this method outputs a carriage-return/line feed pair (CR~LF) after the last parameter displayed. ~Syntax ~Wscript.Echo [anyArg...]
  42. GetObject=The GetObject method retrieves an Automation object from a file, or an object specified by strProgID parameter.~Use the GetObject method when there is a current instance of the object, or if you want to create the object from a~file that is already loaded. If there is no current instance and you don't want the object started from a file that is~already loaded, use the CreateObject method. ~Syntax ~Wscript.GetObject(strPathname [,strProgID] ], [strPrefix]) = objObject 
  43. Quit=The Quit method quits execution with a specified error code.~Syntax ~Wscript.Quit [intErrorCode] 
  44.  
  45.  
  46.  
  47.  
  48.  
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63.  
  64.  
  65.  
  66.