Run-time sending click command to a similar command-button named cmd1
is so easy from another control:
cmd1_Click
But this similar type not works when we're going to send this command from another form, there. For example by:
Form2.cmd1_Click
Then for this time we used to write:
Form2.cmd1.value = True
But now my question is for when this command-button is an array of controls. How we can code this doing one?