I have a custom class which has one label and one panel, initialized like this
Panel_click fires but label does not.
Suggestions welcome!!
Custom Class:
// In DesignerCreateView sub
//......
lbLabel.initialize("Lbl")
Panel1.initialize("Pnl")
//......
//also there are sub to handle _click event for both
Private Sub Pnl_Click
Log("This is working")
End Sub
Private Sub Lbl_Click
Log("This one decided not to")
End Sub
Panel_click fires but label does not.
Suggestions welcome!!