TimGetErrorString


Function

Retrieves the error string from the error code.

Format

Ret = TimGetErrorString( ErrorCode , ErrorString )

Parameters

ErrorCode [ VB.NET: Integer ] [ C, C++: long ] [ C#: int ]

Specify the return value of each function.

 

ErrorString [ VB.NET: StringBuilder ] [ C, C++: char * ] [ C#: out string ]

Specify the base address of the buffer to store the error string. The maximum length of the string is 256 characters.

Return value

Ret [ VB.NET: Integer ] [ C, C++: long ] [ C#: int ]

Definition

Value

Description

TIM_ERR_SUCCESS

0

Normal completed

TIM_ERR_DLL_BUFF_ADDRESS

10100

Invalid data buffer address.

The others (See also:Details of Error Code)

Initial Value

None

Remarks

It is an utility function that returns the meaningful string for the error code. Please use this function for the error processing.

See Also