ScriptContext.CreateAlert Method

Generates a new Alert object.

 ScriptContext.CreateAlert()

Parameters

None

Return Value

Object (Alert)

Remarks

The Alert object returned by this method is initially empty. After creating the new Alert object, assign a value to it using the ScriptContext.Alert property. The Alert object can then be sent to the MOM data stream using the ScriptContext.Submit method.

Examples

The following example shows how to generate a new Alert object.

Function CreateNewAlert()
    Dim objCreatedAlert
    Dim objAlert

    Set objCreatedAlert = ScriptContext.CreateAlert()

    If (ScriptContext.IsAlert()) Then
        Set objAlert = ScriptContext.Alert

        objCreatedAlert.Name = objAlert.Name
        objCreatedAlert.AlertLevel = 50
        objCreatedAlert.Owner = "[unassigned]"
        objCreatedAlert.ResolutionState = 0  ' New
    Else
        Set objCreatedAlert = Nothing
    End If

    Set objAlert = Nothing

    Set CreateNewAlert = objCreatedAlert
End Function

Requirements

Platforms: Requires Windows 2000 or later

Version: Requires MOM 2000  or later

See Also

ScriptContext Object | ScriptContext.Alert Property | ScriptContext.Submit Method | Alert Object