Hi
I am trying to write a macro that would "click" a command button that is in another workbook.. Would that be possible? Without changing any of the code within that other workbook?
Thanks a lot!
|
|
|
|
|
|
|
You can use
|
||
|
|
|
|
You sure you mean workbook and not sheet? Anyways if you "want to loop through all workbooks in a folder and perform an operation on each of them" If you want to access another sheet it's done like this:
|
||
|
|
|
|
There's not a clean way to do this through code, since the button's click event would typically be a private method of the other workbook. However, you can automate the click through VBA code by opening the workbook, finding the control you want, and then activating it and sending it a space character (equivalent to pressing the button). This is almost certainly a terrible idea, and it will probably bring you and your offspring nothing but misery. I'd urge you to find a better solution, but in the meantime, this seems to work...
|
||
|
|
|
|
Instead of trying to programatically click the button, it is possible to run the macro linked to the button directly from your code. First you need to find the name of the macro that is run when the button is clicked. To do this, open the workbook that contains the command button. Right click on the command button and select 'Assign macro' The 'Assign macro' dialog will be displayed. Make a note of the full name in the 'Macro name' box at the top of the dialog. Click on the OK button. Your code in the workbook that needs to call the code should be as follows.
|
||
|
|
