CoreDb.FileGet Method | |
Import contents from file into Memo field
Namespace:
XSharp
Assembly:
XSharp.Core (in XSharp.Core.dll) Version: 2.19
Syntax STATIC METHOD FileGet(
nPos AS DWORD,
cFile AS STRING
) AS LOGIC
public static bool FileGet(
uint nPos,
string cFile
)
Request Example
View SourceParameters
- 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:
LogicTRUE 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 |
---|
VoDbFileGet() and CoreDb.FileGet() are aliases |
See Also