Macros to VBA

mkelly

Registered User.
Local time
Today, 14:17
Joined
Apr 10, 2002
Messages
213
After I convert my macros to VBA how do I change the controls to follow the code?

Do I paste the code to the form? and can I delete the macros?
 
mkelly,

The code that represents what the Macros used to do can
be used several ways.

Some could be put into public functions in Modules.

Some can go on the event functions of the controls on
your form. These events will direct the execution of
your code. For example, if a Macro used to run a report,
then that code would be in the OnClick event of a command
button that says "Run Report".

hth,
Wayne
 
Thanks WayneRyan
 

Users who are viewing this thread

Back
Top Bottom