Refresh Method
Description
Refreshes the Recordset, overwriting values in memory.
Syntax
Visual Basic
Public Sub Refresh( _
   Optional ByVal Range As Long = 0, _
   Optional ByVal Low As Long = 0, _
   Optional ByVal High As Long = 0 _
) 
Parameters
Range
For internal use only.
Low
For internal use only.
High
For internal use only.
Remarks

Objects of classes that implement the IBaseField2 Object have an AutoUnlock Property. If AutoUnlock is true the object is unlocked on a Refresh operation. If AutoUnlock is false, the object remains locked from the call to LockObject until a call to UnlockObject or until the connection is logged off the project.

By default, AutoUnlock is true.

The minimum wait between Refresh calls is three seconds. If there are two calls to Refresh within three seconds, the second call has no effect.

See Also