Initialize Method

DTS Programming

DTS Programming

Initialize Method

The Initialize method of the CustomTaskUI interface must be supplied by the implementer of a Data Transformation Services (DTS) custom task that has a user interface. It is called by DTS whenever the custom task is opened in the design environment.

Applies To
CustomTaskUI Object
Syntax (Visual Basic)

Sub CustomTaskUI_Initialize(ByVal pTask As Task )

Part Description
pTask Task object for the custom task

Remarks

Typically, the Initialize method provides initial values for user interface elements.

Prototype (C/C++)

HRESULT Initialize(IDTSTask *pTask);

See Also

Edit Method

GetUIInfo Method

New (CustomTaskUI) Method