View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Tom Ogilvy Tom Ogilvy is offline
external usenet poster
 
Posts: 27,285
Default Copying ThisWorkBook Events

Export the code, then import it into the target workbook(s).

Regards,
Tom Ogilvy

"mark_1969" wrote in message
...
I have to create 40+ workbooks from a single "template" workbook. These
workbooks will be used by collegues throughout the organization during

their
daily analysis of financial data. One of the goals of these workbooks is

to
sort the corresponding rows based on a specific column (column L). This

sort
needs to occur only during the BeforeSave event and needs to be

transparent
to the user.

I wanted to put the sort code in the ThisWorkBook BeforeSave event and
programatically use VBE to create the component in each of the 40+

workbooks.
Unfortnately, the "template" workbook's BeforeSave event code will not

copy
to the 40+ workbooks. I also tried creating a separate class module to
handle event programming and this works only if I have a reference to the
event class from the newly created workbook.

Since I will have to have this code in 40+ workbooks, I wanted to see if
anyone knew how to copy the Thisworkbook's BeforeSave code to other

workbooks?

Thanks for the help.
--
Mark