(Windows only; GUI for .NET)

UseFullFieldNames allows you to display duplicate fields when there are duplicate field names from different tables in a joined query. UseFullFieldNames is only relevant when the ProBindingSource object is bound to a joined query. The default value is FALSE.

Data type: LOGICAL

Access: PUBLIC Readable/Writeable

Applies to: Progress.Data.BindingSource class

If setting UseFullFieldNames to TRUE, you reference all columns in the ProBindingSource using the format:
buffer-name:field-name
The following example code illustrates how to use this format:
oArray[1] = NEW Progress.Data.ColumnPropDesc("Customer:CustNum","Number",
  Progress.Data.DataType:INTEGER).

myTextBox:DataBindings:Add("Text",pbs,"Bin:BinNum").
Note: When using the ProBindingSource:SetFields() method, you specify the field name using the ABL format, not the above format. For example:
myBS:SetFields("Customer.CustNum,Customer.Name,Order.CustNum,Order.OrderNum","","").