Hi,
I'm having trouble calling the click event of a button on a UserForm from another macro. The button's name is "cmdCalc1" and it's on form "frmRunTimeCalc". I'm trying to call the event from module "Module5". I've tried all sorts of things like using the following code in Module5:
I got errors with all of those. I've also tried recording a macro while performing the operations and the macro came up empty. Anyone have any ideas??
Brian
I'm having trouble calling the click event of a button on a UserForm from another macro. The button's name is "cmdCalc1" and it's on form "frmRunTimeCalc". I'm trying to call the event from module "Module5". I've tried all sorts of things like using the following code in Module5:
Code:
frmRunTimeCalc.cmdCalc1_Click
or
frmRunTimeCalc.cmdCalc1_Click()
or
Call frmRunTimeCalc.cmdCalc1_Click
Brian