Click or drag to resize

VoDbFileGet Function

X#
Import contents from file into Memo field

Namespace:  XSharp.RT
Assembly:  XSharp.RT (in XSharp.RT.dll) Version: 2.19
Syntax
 FUNCTION VoDbFileGet(
	nPos AS DWORD,
	cFile AS STRING
) AS LOGIC
Request Example View Source

Parameters

nPos
Type: DWord
The 1 based position of the field in the database file structure for the current work area.
cFile
Type: String
The name of the file where the value must be written.

Return Value

Type: Logic
TRUE if successful; otherwise, FALSE.
Remarks
This function is like DBFileGet().

This function, however, does not call the error handler and will therefore not produce a runtime error message or create an error object if it fails.
Therefore it is important to check the return value to determine if the function succeeded.

The LastRddError property in the runtimestate will contain needed information about any error that occurs.
Tip Tip
VoDbFileGet() and CoreDb.FileGet() are aliases
See Also