I had a long reply all typed explaining all of the this and thats, that I was doing and how it was still not working.
But I figured it out. It was a VB.Net syntax issue.
Thank you for your response.
Please note that I have added a new VPE object to the form: Report
Code that was not working:
- Code: Select all
Private Sub Charts_ObjectClicked( ByVal sender As Object, _
ByVal e As IDEALSoftware.VpeProfessional.VpeControl.ObjectClickedEventArgs) _
Handles Charts.ObjectClicked
Code that works:
- Code: Select all
Private Sub Charts_ObjectClicked( ByVal sender As Object, _
ByVal e As IDEALSoftware.VpeProfessional.VpeControl.ObjectClickedEventArgs) _
Handles _
Charts.ObjectClicked, _
Report.ObjectClicked
To be clear what was missing was the link to the report object's ObjectClicked code. e.g. I never told the object what to do when the items on the preview page were clicked. I thought I had, but I did not provide the missing link.