My makes it easy to use .Net. Here's an example that uses My to rename a file:
Syntax:
Public Shared Sub RenameFile ( _
file As String, _
newName As String _
)
file is the file path to the file to be renamed.
newName is the new name (with file extentsion) to be given to the file.
Example:
My
.Computer.FileSystem.RenameFile(
"C:\OldName.txt",
"NewName.txt")
Mike McIntyreGet Dot Net Code