-
Hi, everybody!
Is there a way I can simulate a click on a button?
Inside one button click event, I'd like to call another button click event, but if I use the line
Private Sub Btnaltera_click()
to call it, VB returns an Ambiguous name detected error.
Thanks in advance for any help :-)
Roselene
-
You can code it:
Code:
Call Btnaltera_click
This will call the Click event for the button, but it will not simulate the button actually being pushed.
-
Bsmith,
Thanks for helping! It's seems to be so simple, now that you've already given me the solution :-)
See you,
Roselene
-
Bsmith,
Thanks for helping! It's seems to be so simple, now that you've already given me the solution :-)
See you,
Roselene
-
Bsmith,
Thanks for helping! It's seems to be so simple, now that you've already given me the solution :-)
See you,
Roselene
-
Bsmith,
Thanks for helping! It's seems to be so simple, now that you've already given me the solution :-)
See you,
Roselene