ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Reinstall Custom toolbars (https://www.excelbanter.com/excel-programming/420623-reinstall-custom-toolbars.html)

donwb

Reinstall Custom toolbars
 
I need to do a clean reinstall of Windows XP and will therefore have to
reload MS Office 2003.
In MS Office I have some Custom Toolbars and Custom Macros in the BASIC
Excel, Word and Outlook
(not in files I run on those programmes)
How can I save these before the planned reinstall, and how do I recover them
afterwards.
Advice on this would be appreciated.
donwb



Dave Peterson

Reinstall Custom toolbars
 
For excel, your macros live in workbooks. If you didn't delete the workbooks,
then you can open these files with the macros and you'll have them again.

As for the toolbars, it'll depend on the way you created them and it'll depend
on what a clean install means.

If you did the customizing manually (through the user interface), then you may
have lost those changes. In xl2003, the custom toolbars live in a file called
excel11.xlb. And if your clean install of WinXP means that you reformatted the
harddrive that held this excel11.xlb file, then you'll have to recreate them.

On the other hand, if your clean install didn't touch that excel11.xlb, you
should be able to find it (using windows search), and then double click on it to
start excel and load this custom toolbar.

donwb wrote:

I need to do a clean reinstall of Windows XP and will therefore have to
reload MS Office 2003.
In MS Office I have some Custom Toolbars and Custom Macros in the BASIC
Excel, Word and Outlook
(not in files I run on those programmes)
How can I save these before the planned reinstall, and how do I recover them
afterwards.
Advice on this would be appreciated.
donwb


--

Dave Peterson

royUK[_67_]

Reinstall Custom toolbars
 

If you haven't done the install then you possibly could locate & save
the xlb file on a memory stick. Likewise if the macros are in
PERSONAL.xls, unhide that from the Windows men & save that


--
royUK

Hope that helps, RoyUK
For tips & examples visit my 'web site
' (http://www.excel-it.com)
------------------------------------------------------------------------
royUK's Profile: http://www.thecodecage.com/forumz/member.php?userid=15
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=34857


Dave Peterson

Reinstall Custom toolbars
 
You don't need to unhide personal.xls (or any other workbook) before you save
it. The important thing is to save it.

royUK wrote:

If you haven't done the install then you possibly could locate & save
the xlb file on a memory stick. Likewise if the macros are in
PERSONAL.xls, unhide that from the Windows men & save that

--
royUK

Hope that helps, RoyUK
For tips & examples visit my 'web site
' (http://www.excel-it.com)
------------------------------------------------------------------------
royUK's Profile: http://www.thecodecage.com/forumz/member.php?userid=15
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=34857


--

Dave Peterson

royUK[_68_]

Reinstall Custom toolbars
 

Dave Peterson;125851 Wrote:
You don't need to unhide personal.xls (or any other workbook) before you
save
it. The important thing is to save it.

royUK wrote:

If you haven't done the install then you possibly could locate &

save
the xlb file on a memory stick. Likewise if the macros are in
PERSONAL.xls, unhide that from the Windows men & save that

--
royUK

Hope that helps, RoyUK
For tips & examples visit my 'web site
' ('home_page' (http://www.excel-it.com))

------------------------------------------------------------------------
royUK's Profile: 'The Code Cage Forums - View Profile: royUK'

(http://www.thecodecage.com/forumz/member.php?userid=15)
View this thread: 'Reinstall Custom toolbars - The Code Cage Forums'

(http://www.thecodecage.com/forumz/sh...ad.php?t=34857)

--

Dave Peterson


You do if you want to save it to an external device


--
royUK

Hope that helps, RoyUK
For tips & examples visit my 'web site
' (http://www.excel-it.com)
------------------------------------------------------------------------
royUK's Profile: http://www.thecodecage.com/forumz/member.php?userid=15
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=34857


Dave Peterson

Reinstall Custom toolbars
 
If I were to use excel's file|SaveAs, then yes.

But why do that?

I would use windows explorer and copy it to that other device. I don't see a
reason to even open excel to do this.

Or I could use a line of VBA code if I wanted:

Workbooks("personal.xls").saveas filename:="X:\personal.xls", _
fileformat:=xlworkbooknormal



royUK wrote:
<<snipped

You do if you want to save it to an external device

--
royUK

Hope that helps, RoyUK
For tips & examples visit my 'web site
' (http://www.excel-it.com)
------------------------------------------------------------------------
royUK's Profile: http://www.thecodecage.com/forumz/member.php?userid=15
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=34857


--

Dave Peterson

Dave Peterson

Reinstall Custom toolbars
 
Or I could use .savecopyas from within the VBE.

Dave Peterson wrote:

If I were to use excel's file|SaveAs, then yes.

But why do that?

I would use windows explorer and copy it to that other device. I don't see a
reason to even open excel to do this.

Or I could use a line of VBA code if I wanted:

Workbooks("personal.xls").saveas filename:="X:\personal.xls", _
fileformat:=xlworkbooknormal

royUK wrote:
<<snipped

You do if you want to save it to an external device

--
royUK

Hope that helps, RoyUK
For tips & examples visit my 'web site
' (http://www.excel-it.com)
------------------------------------------------------------------------
royUK's Profile: http://www.thecodecage.com/forumz/member.php?userid=15
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=34857


--

Dave Peterson


--

Dave Peterson

royUK[_69_]

Reinstall Custom toolbars
 

Why write code when all you need to do is unhide & save to? I was only
suggesting a way to possibly save the macros mentioned.


--
royUK

Hope that helps, RoyUK
For tips & examples visit my 'web site
' (http://www.excel-it.com)
------------------------------------------------------------------------
royUK's Profile: http://www.thecodecage.com/forumz/member.php?userid=15
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=34857


Dave Peterson

Reinstall Custom toolbars
 
And then you have to remember to open, hide and save on the other pc.

So why use excel when you can just use windows explorer?

royUK wrote:

Why write code when all you need to do is unhide & save to? I was only
suggesting a way to possibly save the macros mentioned.

--
royUK

Hope that helps, RoyUK
For tips & examples visit my 'web site
' (http://www.excel-it.com)
------------------------------------------------------------------------
royUK's Profile: http://www.thecodecage.com/forumz/member.php?userid=15
View this thread: http://www.thecodecage.com/forumz/sh...ad.php?t=34857


--

Dave Peterson

Don[_31_]

Reinstall Custom toolbars
 
Hi Dave and all other responders
Many thanks for the information.
I found excel11.xlb ok and was able to retrieve it to the new installation
donwb


"Dave Peterson" wrote in message
...
For excel, your macros live in workbooks. If you didn't delete the
workbooks,
then you can open these files with the macros and you'll have them again.

As for the toolbars, it'll depend on the way you created them and it'll
depend
on what a clean install means.

If you did the customizing manually (through the user interface), then you
may
have lost those changes. In xl2003, the custom toolbars live in a file
called
excel11.xlb. And if your clean install of WinXP means that you
reformatted the
harddrive that held this excel11.xlb file, then you'll have to recreate
them.

On the other hand, if your clean install didn't touch that excel11.xlb,
you
should be able to find it (using windows search), and then double click on
it to
start excel and load this custom toolbar.

donwb wrote:

I need to do a clean reinstall of Windows XP and will therefore have to
reload MS Office 2003.
In MS Office I have some Custom Toolbars and Custom Macros in the BASIC
Excel, Word and Outlook
(not in files I run on those programmes)
How can I save these before the planned reinstall, and how do I recover
them
afterwards.
Advice on this would be appreciated.
donwb


--

Dave Peterson





All times are GMT +1. The time now is 09:04 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
ExcelBanter.com