BtServer:Fcount Access
<< Click to Display Table of Contents >>
BtServer:Fcount Access
|
|
Purpose
Get number of fields in the current table
Prototype
ACCESS Fcount CLASS BtServer
Return
DWORD Number of fields in the current table.
Example(s)
* Display all fields in the current record
FOR k = 1 TO oServer:fCount
? oServer:FieldGet(k)
NEXT k
See Also