Value - property of the AdoField object
Description:
Value of the column in the current record.
Note:
Property access for read and write.
Example1:
JavaScriptVBScriptSelect and copy to clipboard
var oAdoField = oRs.Fields.Item("value");
var vValue = oAdoField.Value;
Dim oAdoField, vValue
Set oAdoField = oRs.Fields.Item("value")
vValue = oAdoField.Value