SelChange

Fires when selection changes. You can use the SelectedObjects property to inspect the current selection.

Syntax

object_SelChange()

Example

'SelChange event handler
Private Sub ARDesigner1_SelChange()
If ARDesigner1.SelectedObjects.Count = 1 Then
StatusBar1.Panels(1).Text = ARDesigner1.SelectedObjects(0).Name
Else
StatusBar1.Panels(1).Text = ""
End If
End Sub

Remarks

This event can be used to update UI elements such as a property toolbox or status bar in your custom report designer.