Can i create a custom event?

ninjatalon

Member
Joined
Sep 22, 2010
Messages
24
Programming Experience
Beginner
I'm pretty sure i'm not doing this right but i hope by asking this someone can show me the right path.

I've created a function that creates a label and 7 checkboxes arrays . So depending how many names i get from my database, it creates that many for the label and the other checkboxes.

Now my function is inside a module which i call in my Class Form during "Load".

So what i want to do is be able to code in an event where the user checks on one of these checkbox.

Thanks
 
AddHandler Statement
Btw, you're not creating the event, you're dynamically adding an event handler for one of the events defined by CheckBox class.
 
Back
Top