SelectionChange Event not firing for Outlook View Control

A

Anita Gupta

I'm having trouble with an Outlook View Control Object that I have on a
custom form. For some reason, the SelectionChange event is not firing. Here
is my code:

Dim myVC

Sub Item_Open()
Set myVC = Item.ModifiedFormpages("Hot Sheet").Controls("myOVC")
myVC.Folder = \\Public Folders\All Public Folders\Hot Sheet
'(All works fine here)
End Sub

Sub myVC_SelectionChange()
msgBox "Selection has Changed"
'(This does nothing)
End Sub

Does anyone know what I'm doing wrong? Any help would be appreciated.

Anita
 
Top