i ahave a .dob file
which has all private functions
private sub validate()
private sub cbo_change()
etc
I have to write a public sub click()
then have to call a private sub validate() in this click()
how can I do that ...
Thanks in advance.
Printable View
i ahave a .dob file
which has all private functions
private sub validate()
private sub cbo_change()
etc
I have to write a public sub click()
then have to call a private sub validate() in this click()
how can I do that ...
Thanks in advance.
First, those are not subs or functions. They are events. Change is an event of the combo box called CBO. Validate, I'm assuming, is a form level event.
You don't. You write you own subs and call them from where ever and when ever you want.
What do you need to call a Change event? :confused: