Difference between revisions of "FileMan Delphi Components/TFMLister"

From VistApedia
Jump to: navigation, search
(Returned Structure)
(Added glossary link to Record~)
 
Line 15: Line 15:
 
== Description ==
 
== Description ==
  
The purpose of the TFMLister component is to retrieve a list of VA FileMan records from the server. Records are retrieved into the TFMLister's Results property. TFMLister is a wrapper around the LIST^DIC Database Server (DBS) call.
+
The purpose of the TFMLister component is to retrieve a list of VA FileMan [[record~|Record]]s from the server. [[Record~|Record]]s are retrieved into the TFMLister's Results property. TFMLister is a wrapper around the LIST^DIC Database Server (DBS) call.
  
You can use a '''TFMLister''' by itself, to directly retrieve a list of records from the server:
+
You can use a '''TFMLister''' by itself, to directly retrieve a list of [[record~|Record]]s from the server:
  
 
* [[FileMan_Delphi_Components/Retrieve_Records_With_TFMLister|How to retrieve a list of records with TFMLister]]
 
* [[FileMan_Delphi_Components/Retrieve_Records_With_TFMLister|How to retrieve a list of records with TFMLister]]
Line 26: Line 26:
  
 
== Returned Structure ==
 
== Returned Structure ==
The structure of each returned TFMRecordObj is:
+
The structure of each returned TFM[[Record~|Record]]Obj is:
 
<table border=1>
 
<table border=1>
 
<tr><th>Object</th><th>Description</th></tr>
 
<tr><th>Object</th><th>Description</th></tr>
<tr><td>RecObj.IEN</td><td>IEN of the record.</td></tr>
+
<tr><td>RecObj.IEN</td><td>IEN of the [[record~|Record]].</td></tr>
 
<tr><td>RecObj.FMFldValues</td><td>TFMFieldObj objects for fields requested in FieldNumbers.</td></tr>
 
<tr><td>RecObj.FMFldValues</td><td>TFMFieldObj objects for fields requested in FieldNumbers.</td></tr>
 
<tr><td>RecObj.FMIXExternalValues</td><td>external form of index value(s) (TFMLister only) if requested.</td></tr>
 
<tr><td>RecObj.FMIXExternalValues</td><td>external form of index value(s) (TFMLister only) if requested.</td></tr>

Latest revision as of 13:33, 7 April 2012

TFMLister Component


Parent Class

TFMLister = class(TFMAccess)


Description

The purpose of the TFMLister component is to retrieve a list of VA FileMan Records from the server. Records are retrieved into the TFMLister's Results property. TFMLister is a wrapper around the LIST^DIC Database Server (DBS) call.

You can use a TFMLister by itself, to directly retrieve a list of Records from the server:

You can also use the TFMLister in conjuction with list-type VA FileMan data controls to edit pointer fields:

Returned Structure

The structure of each returned TFMRecordObj is:

ObjectDescription
RecObj.IENIEN of the Record.
RecObj.FMFldValuesTFMFieldObj objects for fields requested in FieldNumbers.
RecObj.FMIXExternalValuesexternal form of index value(s) (TFMLister only) if requested.
RecObj.FMIXInternalValuesinternal form of index value(s) (TFMLister only) if requested.
RecObj.FMWIDValuesWrite Identifier of a file and the Identifier parameter result.
RecObj.ObjectsPlace to associate your own object.

When to Use TFMFinder Instead of TFMLister

The TFMFinder can be useful in certain cases where the TFMLister is not. In particular, the TFMLister looks up internal values when you use its PartList property. If the value you need to search on is an external value, you may want to use the TFMFinder instead.


Descriptions of properties inherited from the parent component are not listed here (only those properties added to the parent component are described).

For help on inherited properties, please refer to Delphi's documentation on the parent component.