+ Reply to Thread
Results 1 to 5 of 5

XLB file size growing

  1. #1
    Rob
    Guest

    XLB file size growing

    Hi,

    Using Excel 2000 on Win XP pro and the file excel.xlb is growing each time I
    start and close Excel. The size started at 27kb but is now over 2mb. I'm
    not making any changes when loading and have several add-ins which I think
    is normal.

    The same happens if I delete the excel.xlb file and let Excel create another
    when closing down.

    Any ideas?

    Thanks, Rob



  2. #2
    Dave Peterson
    Guest

    Re: XLB file size growing

    I think you'd have to know the inner workings of excel to know why it's
    growing. And even if you had that knowledge, I'm not sure if you could stop it
    from happening. (But I've never seen the .xlb file grow that big or that fast!)

    I'd suggest that you delete the *.xlb file, then recreate it so that you like
    it.

    Then close excel and back up that new pristine *.xlb file. When you notice that
    the file is growing, just copy the backup to the correct location (overwriting
    the one that's out of control).

    In fact, you may want to set up a small bat file to do this. Then put a
    shortcut on the desktop. Click it every so often (with excel closed).

    ===

    Do you add/delete things from your toolbar--either manually or via code? That
    could be why it's growing.

    Rob wrote:
    >
    > Hi,
    >
    > Using Excel 2000 on Win XP pro and the file excel.xlb is growing each time I
    > start and close Excel. The size started at 27kb but is now over 2mb. I'm
    > not making any changes when loading and have several add-ins which I think
    > is normal.
    >
    > The same happens if I delete the excel.xlb file and let Excel create another
    > when closing down.
    >
    > Any ideas?
    >
    > Thanks, Rob


    --

    Dave Peterson

  3. #3
    Rob
    Guest

    Re: XLB file size growing

    Dave,

    Thanks, like the bat file idea. Usually I amend toolbar as and when
    required manually but don't do it every time I load Excel. Perhaps a bat
    file could overwrite the excel.xla file and start Excel in one go? I'll
    look for some code.

    Thanks, Rob

    "Dave Peterson" <[email protected]> wrote in message
    news:[email protected]...
    >I think you'd have to know the inner workings of excel to know why it's
    > growing. And even if you had that knowledge, I'm not sure if you could
    > stop it
    > from happening. (But I've never seen the .xlb file grow that big or that
    > fast!)
    >
    > I'd suggest that you delete the *.xlb file, then recreate it so that you
    > like
    > it.
    >
    > Then close excel and back up that new pristine *.xlb file. When you
    > notice that
    > the file is growing, just copy the backup to the correct location
    > (overwriting
    > the one that's out of control).
    >
    > In fact, you may want to set up a small bat file to do this. Then put a
    > shortcut on the desktop. Click it every so often (with excel closed).
    >
    > ===
    >
    > Do you add/delete things from your toolbar--either manually or via code?
    > That
    > could be why it's growing.
    >
    > Rob wrote:
    >>
    >> Hi,
    >>
    >> Using Excel 2000 on Win XP pro and the file excel.xlb is growing each
    >> time I
    >> start and close Excel. The size started at 27kb but is now over 2mb.
    >> I'm
    >> not making any changes when loading and have several add-ins which I
    >> think
    >> is normal.
    >>
    >> The same happens if I delete the excel.xlb file and let Excel create
    >> another
    >> when closing down.
    >>
    >> Any ideas?
    >>
    >> Thanks, Rob

    >
    > --
    >
    > Dave Peterson




  4. #4
    Dave Peterson
    Guest

    Re: XLB file size growing

    excel.xla = excel.xlb????

    This worked ok for me (saved as a .bat file):

    REM ==============
    copy "C:\myBackups\excel11.xlb" "C:\Documents and Settings\David
    Peterson\Application Data\Microsoft\Excel\XLSTART"

    start excel

    REM =================

    That Copy command was all one line (no line breaks).



    Rob wrote:
    >
    > Dave,
    >
    > Thanks, like the bat file idea. Usually I amend toolbar as and when
    > required manually but don't do it every time I load Excel. Perhaps a bat
    > file could overwrite the excel.xla file and start Excel in one go? I'll
    > look for some code.
    >
    > Thanks, Rob
    >
    > "Dave Peterson" <[email protected]> wrote in message
    > news:[email protected]...
    > >I think you'd have to know the inner workings of excel to know why it's
    > > growing. And even if you had that knowledge, I'm not sure if you could
    > > stop it
    > > from happening. (But I've never seen the .xlb file grow that big or that
    > > fast!)
    > >
    > > I'd suggest that you delete the *.xlb file, then recreate it so that you
    > > like
    > > it.
    > >
    > > Then close excel and back up that new pristine *.xlb file. When you
    > > notice that
    > > the file is growing, just copy the backup to the correct location
    > > (overwriting
    > > the one that's out of control).
    > >
    > > In fact, you may want to set up a small bat file to do this. Then put a
    > > shortcut on the desktop. Click it every so often (with excel closed).
    > >
    > > ===
    > >
    > > Do you add/delete things from your toolbar--either manually or via code?
    > > That
    > > could be why it's growing.
    > >
    > > Rob wrote:
    > >>
    > >> Hi,
    > >>
    > >> Using Excel 2000 on Win XP pro and the file excel.xlb is growing each
    > >> time I
    > >> start and close Excel. The size started at 27kb but is now over 2mb.
    > >> I'm
    > >> not making any changes when loading and have several add-ins which I
    > >> think
    > >> is normal.
    > >>
    > >> The same happens if I delete the excel.xlb file and let Excel create
    > >> another
    > >> when closing down.
    > >>
    > >> Any ideas?
    > >>
    > >> Thanks, Rob

    > >
    > > --
    > >
    > > Dave Peterson


    --

    Dave Peterson

  5. #5
    Rob
    Guest

    Re: XLB file size growing

    Thanks Dave, worked a treat. Rob

    "Dave Peterson" <[email protected]> wrote in message
    news:[email protected]...
    > excel.xla = excel.xlb????
    >
    > This worked ok for me (saved as a .bat file):
    >
    > REM ==============
    > copy "C:\myBackups\excel11.xlb" "C:\Documents and Settings\David
    > Peterson\Application Data\Microsoft\Excel\XLSTART"
    >
    > start excel
    >
    > REM =================
    >
    > That Copy command was all one line (no line breaks).
    >
    >
    >
    > Rob wrote:
    >>
    >> Dave,
    >>
    >> Thanks, like the bat file idea. Usually I amend toolbar as and when
    >> required manually but don't do it every time I load Excel. Perhaps a bat
    >> file could overwrite the excel.xla file and start Excel in one go? I'll
    >> look for some code.
    >>
    >> Thanks, Rob
    >>
    >> "Dave Peterson" <[email protected]> wrote in message
    >> news:[email protected]...
    >> >I think you'd have to know the inner workings of excel to know why it's
    >> > growing. And even if you had that knowledge, I'm not sure if you could
    >> > stop it
    >> > from happening. (But I've never seen the .xlb file grow that big or
    >> > that
    >> > fast!)
    >> >
    >> > I'd suggest that you delete the *.xlb file, then recreate it so that
    >> > you
    >> > like
    >> > it.
    >> >
    >> > Then close excel and back up that new pristine *.xlb file. When you
    >> > notice that
    >> > the file is growing, just copy the backup to the correct location
    >> > (overwriting
    >> > the one that's out of control).
    >> >
    >> > In fact, you may want to set up a small bat file to do this. Then put
    >> > a
    >> > shortcut on the desktop. Click it every so often (with excel closed).
    >> >
    >> > ===
    >> >
    >> > Do you add/delete things from your toolbar--either manually or via
    >> > code?
    >> > That
    >> > could be why it's growing.
    >> >
    >> > Rob wrote:
    >> >>
    >> >> Hi,
    >> >>
    >> >> Using Excel 2000 on Win XP pro and the file excel.xlb is growing each
    >> >> time I
    >> >> start and close Excel. The size started at 27kb but is now over 2mb.
    >> >> I'm
    >> >> not making any changes when loading and have several add-ins which I
    >> >> think
    >> >> is normal.
    >> >>
    >> >> The same happens if I delete the excel.xlb file and let Excel create
    >> >> another
    >> >> when closing down.
    >> >>
    >> >> Any ideas?
    >> >>
    >> >> Thanks, Rob
    >> >
    >> > --
    >> >
    >> > Dave Peterson

    >
    > --
    >
    > Dave Peterson




+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1