How do I raise an event with a custom active x control that I make? Thanks! :duck:
Added green "resolved" checkmark - Hack
Printable View
How do I raise an event with a custom active x control that I make? Thanks! :duck:
Added green "resolved" checkmark - Hack
Is this what you want ?
See the (Event Statement documentation.)
VB Code:
Option Explicit Public Event OurClickEvent() Private Sub UserControl_Click() RaiseEvent OurClickEvent End Sub
Yes! ;)