CreateLocalFile
Find the syntax, use, parameters, return values, and an example for the CreateLocalFile macro command in Connexion client.
Syntax | nResult = CS.CreateLocalFile (sPath) |
---|---|
Use to | Create a local file in the specified path and set the file as the default. If the file already exists, set the specified existing file as the default. |
Parameters | For sPath, enter the full path and file name. |
Comments | The macro command does not validate the path name for a file, nor does it create directories in the path. The specified file extension determines the type of file created:
|
Return values | Returns an integer with one of the following values:
|
Example | Sub Main()
Dim CS As Object Dim nResult as Integer If nResult = 0 Then Else |
What this example does |
|