How can I get an onclick event to trigger 2 different subs?
Such as:
Thanks in advance,Code:<INPUT type=RADIO name=optStatus value="TRANSFERRED" onclick="Sub1(), Sub2()">
Printable View
How can I get an onclick event to trigger 2 different subs?
Such as:
Thanks in advance,Code:<INPUT type=RADIO name=optStatus value="TRANSFERRED" onclick="Sub1(), Sub2()">
this may sound too simple, but:
why not create a 'bridge' sub that calls the other two:
and somewhere else you have:Code:INPUT type=RADIO name=optStatus value="TRANSFERRED" onclick="SubA()">
Code:SubA(){
Sub1()
Sub2()
}