im making a control and i need to now how to make it where it only has the funtions you put in there . not on click and that other good suff thanks .
Printable View
im making a control and i need to now how to make it where it only has the funtions you put in there . not on click and that other good suff thanks .
Why not just leave the "On_Click()" (and all other events you don't want) blank.
All events are Private by default, so users won't see them.
Am I understanding you right?
The thing is:
If you don't put code to handle a particular event, that event will go unnoticed. For e.g. if you don't put any code in the Form_Click() event, the application won't do anything if you click on its form any number of times. So essentially, it will have only those functions which you put in.