Open


Function

 

Open the file.

 

Format

 

Ret = dncWriteFile1.Open()

 

Parameters

 

None

 

Return value

 

Ret [ C#: int ] [ VB.NET: Integer ]

 

Value

Description

0

Normality completion

520001

Failed to input / output the file. Check the file path and file name.

Other errors (see: Error code details)

 

Remarks

 

Opens the file for saving according to the conditions specified in the properties.

 

Example

 

Open the file for saving.

C#

int Ret

Ret = dncWriteFile1.Open();

 

VB.NET

Dim Ret As Integer

Ret = dncWriteFile1.Open()