Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,071
Default Assigned macro change

Excel XP & Win XP
Everything below is done via VBA.
I have a workbook, say A.xls, that has a number of macros and a number of
buttons here and there to trigger the macros. All the macros assigned to
the buttons are in that workbook.
I do some work with this workbook.
Then I SaveAs as B.xls.
In the B.xls workbook, the macro assignments all reference A.xls as the
location of the macros.
I want the macro assignments in B.xls to reference B.xls.
Is there some code that I can employ at the time of the SaveAs to carry the
macro assignments to the new workbook?
If not, what would be the best way to change the macro assignments to B.xls
after B.xls is created?
Thanks for your time. Otto


  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 9,101
Default Assigned macro change

To reference the workbook with the macro make the following change

from
workbooks("A.xls")

to
ThisWorkbook

"Otto Moehrbach" wrote:

Excel XP & Win XP
Everything below is done via VBA.
I have a workbook, say A.xls, that has a number of macros and a number of
buttons here and there to trigger the macros. All the macros assigned to
the buttons are in that workbook.
I do some work with this workbook.
Then I SaveAs as B.xls.
In the B.xls workbook, the macro assignments all reference A.xls as the
location of the macros.
I want the macro assignments in B.xls to reference B.xls.
Is there some code that I can employ at the time of the SaveAs to carry the
macro assignments to the new workbook?
If not, what would be the best way to change the macro assignments to B.xls
after B.xls is created?
Thanks for your time. Otto



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,071
Default Assigned macro change

Joel
I wasn't clear. I have a workbook A.xls with macros and buttons to
execute the macros. With VBA I do a SaveAs and name it B.xls. A.xls is now
closed. I click a button in B.xls. I get an error because VBA is looking
for A.xls!MacroName. I want the macro that is assigned to a button in B.xls
to be a macro that is in WB B.xls. Otto
"Joel" wrote in message
...
To reference the workbook with the macro make the following change

from
workbooks("A.xls")

to
ThisWorkbook

"Otto Moehrbach" wrote:

Excel XP & Win XP
Everything below is done via VBA.
I have a workbook, say A.xls, that has a number of macros and a number of
buttons here and there to trigger the macros. All the macros assigned to
the buttons are in that workbook.
I do some work with this workbook.
Then I SaveAs as B.xls.
In the B.xls workbook, the macro assignments all reference A.xls as the
location of the macros.
I want the macro assignments in B.xls to reference B.xls.
Is there some code that I can employ at the time of the SaveAs to carry
the
macro assignments to the new workbook?
If not, what would be the best way to change the macro assignments to
B.xls
after B.xls is created?
Thanks for your time. Otto





  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,494
Default Assigned macro change

do you have hard coded references to A.xls?

if so, change them to thisworkbook.

don't know without seeing an example of the code that's in question.

--


Gary

"Otto Moehrbach" wrote in message
...
Excel XP & Win XP
Everything below is done via VBA.
I have a workbook, say A.xls, that has a number of macros and a number of
buttons here and there to trigger the macros. All the macros assigned to the
buttons are in that workbook.
I do some work with this workbook.
Then I SaveAs as B.xls.
In the B.xls workbook, the macro assignments all reference A.xls as the
location of the macros.
I want the macro assignments in B.xls to reference B.xls.
Is there some code that I can employ at the time of the SaveAs to carry the
macro assignments to the new workbook?
If not, what would be the best way to change the macro assignments to B.xls
after B.xls is created?
Thanks for your time. Otto



  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,071
Default Assigned macro change

Gary
Thanks for your help. In the A.xls WB the button assignment is simply
"MacroName". In the B.xls WB the assignment is "A.xls!MacroName". I want
the assignment to be simply MacroName in both workbooks so that any button
clicked on will run a macro that is in the WB that holds that button.
Thanks again. Otto
"Gary Keramidas" <GKeramidasAtMsn.com wrote in message
...
do you have hard coded references to A.xls?

if so, change them to thisworkbook.

don't know without seeing an example of the code that's in question.

--


Gary

"Otto Moehrbach" wrote in message
...
Excel XP & Win XP
Everything below is done via VBA.
I have a workbook, say A.xls, that has a number of macros and a number of
buttons here and there to trigger the macros. All the macros assigned to
the buttons are in that workbook.
I do some work with this workbook.
Then I SaveAs as B.xls.
In the B.xls workbook, the macro assignments all reference A.xls as the
location of the macros.
I want the macro assignments in B.xls to reference B.xls.
Is there some code that I can employ at the time of the SaveAs to carry
the macro assignments to the new workbook?
If not, what would be the best way to change the macro assignments to
B.xls after B.xls is created?
Thanks for your time. Otto







  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 35,218
Default Assigned macro change

You could loop through all the buttons/objects on the sheet and look at the
..onaction string. Then change the oldname.xls to the newname.xls
(thisworkbook.name???).

But if you're only using buttons from the Forms toolbar, you may find it much
easier to replace them with the Commandbuttons from the control toolbox toolbar.

Those objects don't have macros assigned to them. They have events and those
event procedures live under the worksheets that own the commandbuttons.



Otto Moehrbach wrote:

Excel XP & Win XP
Everything below is done via VBA.
I have a workbook, say A.xls, that has a number of macros and a number of
buttons here and there to trigger the macros. All the macros assigned to
the buttons are in that workbook.
I do some work with this workbook.
Then I SaveAs as B.xls.
In the B.xls workbook, the macro assignments all reference A.xls as the
location of the macros.
I want the macro assignments in B.xls to reference B.xls.
Is there some code that I can employ at the time of the SaveAs to carry the
macro assignments to the new workbook?
If not, what would be the best way to change the macro assignments to B.xls
after B.xls is created?
Thanks for your time. Otto


--

Dave Peterson
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,071
Default Assigned macro change

Thanks Dave. That sounds like a good idea. Otto
"Dave Peterson" wrote in message
...
You could loop through all the buttons/objects on the sheet and look at
the
.onaction string. Then change the oldname.xls to the newname.xls
(thisworkbook.name???).

But if you're only using buttons from the Forms toolbar, you may find it
much
easier to replace them with the Commandbuttons from the control toolbox
toolbar.

Those objects don't have macros assigned to them. They have events and
those
event procedures live under the worksheets that own the commandbuttons.



Otto Moehrbach wrote:

Excel XP & Win XP
Everything below is done via VBA.
I have a workbook, say A.xls, that has a number of macros and a number of
buttons here and there to trigger the macros. All the macros assigned to
the buttons are in that workbook.
I do some work with this workbook.
Then I SaveAs as B.xls.
In the B.xls workbook, the macro assignments all reference A.xls as the
location of the macros.
I want the macro assignments in B.xls to reference B.xls.
Is there some code that I can employ at the time of the SaveAs to carry
the
macro assignments to the new workbook?
If not, what would be the best way to change the macro assignments to
B.xls
after B.xls is created?
Thanks for your time. Otto


--

Dave Peterson



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Use Macro To Change Which Macro Assigned To Command Button CVinje Excel Discussion (Misc queries) 0 May 25th 10 09:55 PM
Can't change macro assigned to drawing object MarquisB Excel Programming 5 February 3rd 07 03:23 PM
If line ends in assigned value then change item in COMMENT. chesspupil[_3_] Excel Programming 0 May 22nd 06 03:04 AM
Assigned macros change location markvi Excel Discussion (Misc queries) 3 April 6th 06 06:48 PM
Change the assigned chart number Al Eaton Excel Programming 2 July 26th 04 02:00 AM


All times are GMT +1. The time now is 02:13 AM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"