guides:programming:programmers_reference_manual:utility_dotnet

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

guides:programming:programmers_reference_manual:utility_dotnet [2024/06/19 20:20] – created - external edit 127.0.0.1guides:programming:programmers_reference_manual:utility_dotnet [2024/10/19 11:42] (current) bshumsky
Line 12: Line 12:
  
 CHECKWIN CHECKWIN
 +
 +COPYDIR
 +
 +COPYFILE
  
 GETWINHNDL GETWINHNDL
Line 18: Line 22:
  
 MAKEDIR MAKEDIR
 +
 +MOVEDIR
 +
 +MOVEFILE
  
 REMOVEDIR REMOVEDIR
Line 29: Line 37:
 ZIP ZIP
  
-By default, UTILITY_DOTNET will use .NET 2.0 assemblies to execute these requests; however, if .NET 4.0 assemblies are desired, you may suffix the command with "4" - for example, RUNWIN4, CHECKWIN4, etc.+<del>By default, UTILITY_DOTNET will use .NET 2.0 assemblies to execute these requests; however, if .NET 4.0 assemblies are desired, you may suffix the command with "4" - for example, RUNWIN4, CHECKWIN4, etc. 
 +</del> 
 + 
 +[Updated for OI10] By default, UTILITY_DOTNET will use .NET 4.0 assemblies to execute these requests; however, if .NET 2.0 assemblies are desired, you may suffix the command with "2" - for example, RUNWIN2, CHECKWIN2, etc.
  
 CHECKWIN: Pass in the handle to the REVDOTNET object for the window you wish to check (PARAM1), as obtained by RUNWIN with PARAM4 = "1" Returns the literal "True" if the window has exited, or the literal "False" if the window is still running.  Any error messages are returned in STATUS. CHECKWIN: Pass in the handle to the REVDOTNET object for the window you wish to check (PARAM1), as obtained by RUNWIN with PARAM4 = "1" Returns the literal "True" if the window has exited, or the literal "False" if the window is still running.  Any error messages are returned in STATUS.
 +
 +COPYDIR: Pass in the path to the original directory you wish to copy, and the path to the destination location.  Any error messages are returned in STATUS.
 +
 +COPYFILE: Pass in the path and filename to the original file you wish to copy, and the path and filename you wish to copy it to.  Any error messages are returned in STATUS.
  
 GETWINHNDL: Pass in the handle to the REVDOTNET object for the window you wish to check (PARAM1), as obtained by RUNWIN with PARAM4 = "1" Returns the window handle (which can then be used in other Windows calls).  Any error messages are returned in STATUS. GETWINHNDL: Pass in the handle to the REVDOTNET object for the window you wish to check (PARAM1), as obtained by RUNWIN with PARAM4 = "1" Returns the window handle (which can then be used in other Windows calls).  Any error messages are returned in STATUS.
Line 38: Line 53:
  
 MAKEDIR: Pass in the full path to the directory you wish to create (PARAM1).  Any error messages are returned in STATUS. MAKEDIR: Pass in the full path to the directory you wish to create (PARAM1).  Any error messages are returned in STATUS.
 +
 +MOVEDIR: Pass in the path to the original directory you wish to move, and the path to the destination location.  Any error messages are returned in STATUS.
 +
 +MOVEFILE: Pass in the path and filename to the original file you wish to move, and the path and filename you wish to move it to.  Any error messages are returned in STATUS.
  
 REMOVEDIR: Pass in the full path to the directory you wish to remove (PARAM1).  Any error messages are returned in STATUS. REMOVEDIR: Pass in the full path to the directory you wish to remove (PARAM1).  Any error messages are returned in STATUS.
  • guides/programming/programmers_reference_manual/utility_dotnet.1718828402.txt.gz
  • Last modified: 2024/06/19 20:20
  • by 127.0.0.1