Previous Topic

Next Topic

Inhoudsopgave

Book Index

FieldValues Property

Property Property FieldValues( Fieldname: String ): Variant (R/W)

Description

Reads or modifies values in the current record.

Parameters

Result

The value that is retrieved.

Example

Sub Main

If UCase(Motor) = "1.6I" then

Record.FieldValues("SubPartNo") = "MOTOR 1.6I"

End If

End sub

Example

Sub Main

Dim Motor

Motor = Record.FieldValues("SubPartNo")

End sub