Click or drag to resize

IScriptingEventsOnCurrentSelectionCreated Method

Called when a new object is saved for the first time.

Namespace:  SuperOffice.COM.ScriptEvents
Assembly:  Scripting.Interop (in Scripting.Interop.dll) Version: 8.0.0.0
Syntax
void OnCurrentSelectionCreated()
Examples

Description

This text may be copied to the notepad, and saved as a *.vbs file.

VB
Sub OnCurrentSelectionCreated
If CurrentSelection.SelectionCategory.Text = "Campaign" Then
    Set myApnt = Database.CreateAppointment
    myApnt.SetDefaultsToDo
    myApnt.Contact = Database.GetContact(Database.OwnerContactId)
    myApnt.Description = "A new campaign selection was created, you need to ...."
    myApnt.Save
End If
End Sub

See Also