Synchronizes all changes that the user makes to the page control with the Microsoft Management Console form. Namespace: Microsoft.ConfigurationManagement.AdminConsole
Assembly: Microsoft.ConfigurationManagement (in microsoft.configurationmanagement.dll)

Usage

Visual Basic
Dim errorControl As Control
Dim showError As Boolean
Dim returnValue As Boolean

returnValue = Me.ApplyChanges(errorControl, showError)

Syntax

Visual Basic
Protected Overridable Function ApplyChanges ( _
		<OutAttribute> ByRef errorControl As Control, _
		<OutAttribute> ByRef showError As Boolean _
) As Boolean
C#
protected virtual bool ApplyChanges (
		out Control errorControl,
		out bool showError
)
C++
protected:
virtual bool ApplyChanges (
		[OutAttribute] Control^% errorControl, 
		[OutAttribute] bool% showError
)
J#
protected boolean ApplyChanges (
		/** @attribute OutAttribute() */ /** @ref */ Control errorControl, 
		/** @attribute OutAttribute() */ /** @ref */ boolean showError
)
JScript

Parameters

errorControl

[out] Reference to a System.Windows.Forms.Control object.

showError

[out] true if errors are displayed.

Return Value

true if the synchronization is successful; otherwise false.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2003, Windows Vista

Target Platforms

Windows Server 2003,Windows Vista

See Also