Description
This function is used to retrieve details on the definition of a single or all fields on a specified form.
Input Param
LPWFSCHKQUERYFIELD,
as defined below.typedef struct _wfs_chk_query_field
{
LPSTR lpszFormName;
LPSTR lpszFieldName;
} WFSCHKQUERYFIELD, * LPWFSCHKQUERYFIELD;
lpszFormName
Points to the null-terminated form name.
lpszFieldName
Points to the null-terminated name of the field about which to retrieve details. If this value is NULL, then retrieve details for all fields on the form.
LPWFSFRMFIELD * lpFields;
See Section 7.1.4.7, WFS_PTR_QUERY_FIELD for details of this structure.
Error Codes
The following additional error codes can be generated by this command:
Value | Meaning |
WFS_ERR_CHK _FORMNOTFOUND | The specified form cannot be found. |
WFS_ERR_CHK _FIELDNOTFOUND | The specified field cannot be found. |