Version

Refresh(RefreshRow) Method

Refresh the display and/or refetch the data non-recursively.
Syntax
'Declaration
 
Public Overloads Sub Refresh( _
   ByVal action As RefreshRow _
) 
public void Refresh( 
   RefreshRow action
)

Parameters

action
The refresh action.
Remarks

Generally, painting a control is handled automatically while no events are occurring. However, there may be situations where you want the form or control updated immediately, for example, after some external event has caused a change to the form. In such a case, you would use the Refresh method.

The Refresh method can also be used to ensure that the user is viewing the latest copy of the data from the record source.

Use the overload of Refresh method that takes in recursive parameter to recursively perform this operation on descendant rows as well.

Requirements

Target Platforms: Windows 10, Windows 8.1, Windows 8, Windows 7, Windows Server 2012, Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also