The Value property returns the data value of the selected LINCField.
Note: This property is the default property of the LINCField object.
Syntax
Objectname.Value
<Object> is an expression that evaluates to an instance of a Component Enabler connection object.
Returns
The data value of the LINCField object.
Example
MsgBox "The value of the field CUSTNO is " & _ LINCAPP.colLINCFields("CUSTNO").Value
The previous line can also be written as follows:
MsgBox "The value of the field CUSTNO is " & LINCAPP![CUSTNO]
This is because the colLINCFields and Value properties are both defaults and hence the shorthand form described above results in the same message as the first example.