TrnBrowseGetField
The TrnBrowseGetField function retrieves the value of the specified field from the record the data browse cursor is currently referencing.
This function is a non-blocking function. It does not block the calling Cicode task.
Syntax
TrnBrowseGetField(iSession, sFieldName)
iSession
The handle to a browse session previously returned by a TrnBrowseOpen call.
sFieldName
The name of the field that references the value to be returned. Supported fields are:
ACQERROR, AREA, EXPRESSION, FILENAME, FILES, LSL, PRIV, RANGE, SDEVIATION, SPCFLAG, STORMETHOD, SUBGRPSIZE, TIME, TRIGGER, USL, XDOUBLEBAR.
See Browse Function Field Reference for information about fields.
Return Value
The value of the specified field as a string. An empty string may or may not be an indication that an error has been detected. The last error should be checked in this instance to determine if an error has actually occurred.
Related Functions
TrnBrowseClose, TrnBrowseFirst, TrnBrowseNext, TrnBrowseNumRecords, TrnBrowseOpen, TrnBrowsePrev
Example
STRING fieldValue = "";
STRING fieldName = "TYPE";
INT errorCode = 0;
...
fieldValue = TrnBrowseGetField(iSession, sFieldName);
IF fieldValue <> "" THEN
// Successful case
ELSE
// Function did not succeed
END
...
See Also