Hi All,
I have a form with 4 buttons. You need to press the buttons in order to get the correct result. I could run all the code on one button but I split it up to make it easier to administer. (and make it look more technical and complicated for the end users
)
What I also want is one BIG button that runs each of the buttons 'Private Sub''s in order.
e.g. :
I have a form with 4 buttons. You need to press the buttons in order to get the correct result. I could run all the code on one button but I split it up to make it easier to administer. (and make it look more technical and complicated for the end users
What I also want is one BIG button that runs each of the buttons 'Private Sub''s in order.
e.g. :
Code:
Run(Private Sub Btn_Import_Click)
Run(Private Sub Btn_Append_Click)
Run(Private Sub Btn_Report_Click)
Run(Private Sub Btn_Print_Click) [\code]
I have seen this done and know it is a simple function, but I do not know which one and can not find any thing in help...can you help...