Has no parameters
Description:
Returns a list of FieldNames available for the current Work Query
Example:
[New] Fields = GetFieldNames "QueryName.Output"
Function GetFieldNames(pQuery)
Rem 'Return a space-separated list of fields from the specified query
[New] FieldList
WorkQuery pQuery
FieldList [WQFieldList]
Return FieldList
EndRem
End Function