#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35
Default XLA File

I've created an XLA file and saved it to the add in directory so that it
appears in the Add In list, and I can check it or uncheck it.

I can also close XL, then click directly on the XLA file, which opens up XL,
but I cannot see XLA file name on the title bar, only Book1. And tit's not
in the Windows menu either. However, it shows up in teh VBE Alt 11.

How do I open up the XLA file itself so I can end up making changes and
SAVING it?

Any help is appreciated.
  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,420
Default XLA File

The whole point of an XLA is that it is a code file, not a data spreadsheet,
so it gets hidden and you shouldn't be making changes to it. You don't
really want an XLA

--
__________________________________
HTH

Bob

"Access101" wrote in message
...
I've created an XLA file and saved it to the add in directory so that it
appears in the Add In list, and I can check it or uncheck it.

I can also close XL, then click directly on the XLA file, which opens up
XL,
but I cannot see XLA file name on the title bar, only Book1. And tit's
not
in the Windows menu either. However, it shows up in teh VBE Alt 11.

How do I open up the XLA file itself so I can end up making changes and
SAVING it?

Any help is appreciated.



  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 793
Default XLA File

Change the extension to XLS, edit and then save as XLA again.

"Access101" wrote:

I've created an XLA file and saved it to the add in directory so that it
appears in the Add In list, and I can check it or uncheck it.

I can also close XL, then click directly on the XLA file, which opens up XL,
but I cannot see XLA file name on the title bar, only Book1. And tit's not
in the Windows menu either. However, it shows up in teh VBE Alt 11.

How do I open up the XLA file itself so I can end up making changes and
SAVING it?

Any help is appreciated.

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 964
Default XLA File

Maybe you want the xlt which is a template? That way when you open the
template it will open a copy
of that file and if you want to make changes you just save over the old one

--


Regards,


Peo Sjoblom

"Access101" wrote in message
...
I've created an XLA file and saved it to the add in directory so that it
appears in the Add In list, and I can check it or uncheck it.

I can also close XL, then click directly on the XLA file, which opens up
XL,
but I cannot see XLA file name on the title bar, only Book1. And tit's
not
in the Windows menu either. However, it shows up in teh VBE Alt 11.

How do I open up the XLA file itself so I can end up making changes and
SAVING it?

Any help is appreciated.



  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1,327
Default XLA File

When you alter VBA code and all thet in the VB editor, hover the Save button
there and you'll see "Save xxx.xla", which the button does on click. This is
how you save changes to the code/userform/classes part of addins.

If you need to change it's invisible worksheets, go to ThisWorkbook module
and set property IsAddin to False. Now you can edit the sheets in Excel. Set
IsAddin to True again and save in the VB editor.

Note that addins doesn't prompt "save changes?" on exit, so you must know
what you are doing here.

HTH. Best wishes Harald


"Access101" skrev i melding
...
I've created an XLA file and saved it to the add in directory so that it
appears in the Add In list, and I can check it or uncheck it.

I can also close XL, then click directly on the XLA file, which opens up
XL,
but I cannot see XLA file name on the title bar, only Book1. And tit's
not
in the Windows menu either. However, it shows up in teh VBE Alt 11.

How do I open up the XLA file itself so I can end up making changes and
SAVING it?

Any help is appreciated.





  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35
Default XLA File

I must be misunderstanding this response.

Because my understanding is that unless every programmer were perfect, they
would at some point have a need to go back into the XLA and fix a bug.

However, setting the IsAddin Property to False solved the issue.

"Bob Phillips" wrote:

The whole point of an XLA is that it is a code file, not a data spreadsheet,
so it gets hidden and you shouldn't be making changes to it. You don't
really want an XLA

--
__________________________________
HTH

Bob

"Access101" wrote in message
...
I've created an XLA file and saved it to the add in directory so that it
appears in the Add In list, and I can check it or uncheck it.

I can also close XL, then click directly on the XLA file, which opens up
XL,
but I cannot see XLA file name on the title bar, only Book1. And tit's
not
in the Windows menu either. However, it shows up in teh VBE Alt 11.

How do I open up the XLA file itself so I can end up making changes and
SAVING it?

Any help is appreciated.




  #7   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 35
Default XLA File

this is excellent. Thank you so much.

A customized toolbar that had been accidently attached to this file needed
to be removed, and then have the ability to save the file.

I did not need to change code, which obviously could have been done in the
VBE without having to use the IsAddin False concept.

So thank you very much for answering my question and providing the exact
solution that I needed!!!! :)

"Harald Staff" wrote:

When you alter VBA code and all thet in the VB editor, hover the Save button
there and you'll see "Save xxx.xla", which the button does on click. This is
how you save changes to the code/userform/classes part of addins.

If you need to change it's invisible worksheets, go to ThisWorkbook module
and set property IsAddin to False. Now you can edit the sheets in Excel. Set
IsAddin to True again and save in the VB editor.

Note that addins doesn't prompt "save changes?" on exit, so you must know
what you are doing here.

HTH. Best wishes Harald


"Access101" skrev i melding
...
I've created an XLA file and saved it to the add in directory so that it
appears in the Add In list, and I can check it or uncheck it.

I can also close XL, then click directly on the XLA file, which opens up
XL,
but I cannot see XLA file name on the title bar, only Book1. And tit's
not
in the Windows menu either. However, it shows up in teh VBE Alt 11.

How do I open up the XLA file itself so I can end up making changes and
SAVING it?

Any help is appreciated.




  #8   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 2,420
Default XLA File

If you are just talking about changing the code, you can do that in the
VBIDE, and then save it there.

If you change the IsAddin property, what is the point. IsAddin = False -
what does that suggest to you?

--
__________________________________
HTH

Bob

"Access101" wrote in message
...
I must be misunderstanding this response.

Because my understanding is that unless every programmer were perfect,
they
would at some point have a need to go back into the XLA and fix a bug.

However, setting the IsAddin Property to False solved the issue.

"Bob Phillips" wrote:

The whole point of an XLA is that it is a code file, not a data
spreadsheet,
so it gets hidden and you shouldn't be making changes to it. You don't
really want an XLA

--
__________________________________
HTH

Bob

"Access101" wrote in message
...
I've created an XLA file and saved it to the add in directory so that
it
appears in the Add In list, and I can check it or uncheck it.

I can also close XL, then click directly on the XLA file, which opens
up
XL,
but I cannot see XLA file name on the title bar, only Book1. And tit's
not
in the Windows menu either. However, it shows up in teh VBE Alt 11.

How do I open up the XLA file itself so I can end up making changes and
SAVING it?

Any help is appreciated.






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
File:1 and File:2 -- Double Files when Opening One File dallin Excel Discussion (Misc queries) 1 January 25th 07 02:53 AM
I saved file A over file B. Can I get file B back? Lynn Excel Discussion (Misc queries) 2 May 12th 06 11:24 AM
opening an excel file opens a duplicate file of the same file skm Excel Discussion (Misc queries) 1 December 7th 05 05:52 PM
I SAVED A FILE OVER ANOTHER A FILE IN EXCEL. THE OLD FILE WAS AN . DUFFER8MCD Excel Discussion (Misc queries) 1 December 23rd 04 11:32 PM
i received a file that reads powerpoint document file file exten. CCAROLACEREC Excel Discussion (Misc queries) 1 December 4th 04 05:02 PM


All times are GMT +1. The time now is 11:28 AM.

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

About Us

"It's about Microsoft Excel"