Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 48
Default How to make Add-In worksheets viewable.

Hello,

I'm converted a workbook project(.xls) into an add-In but i find frequently
i need to add or modify contents of a worksheet such as comments to myself,
version number in a worksheet in the addin. Problem is i can't seem to view
the sheet in either excel or in VBA once it is converted into an addin. Is
it possible to make these addin worksheets visible in excel or VBA so that i
can add comments into the worksheet without having to unload the addin, make
the changes in the worksheet of the original workbook(.xls), compile, convert
to add-in again, then reload the addin?

Thanks!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default How to make Add-In worksheets viewable.

worksheets("MyAddin.xla").Worksheets("Sheet2").Ran ge("B9").Value = _
"Note to Self: Make the code faster"

Have you tried selecting it in the VBE (project explorer), look in the
properties window and change IsAddin to False.

Make your changes

Then change it back. and then in the VBE do File=Save MyAddin.xla


Addins are not compiled. They are pretty much just workbooks with a
property set so excel handles them a bit differently.

--
Regards,
Tom Ogilvy


"Bing" wrote in message
...
Hello,

I'm converted a workbook project(.xls) into an add-In but i find

frequently
i need to add or modify contents of a worksheet such as comments to

myself,
version number in a worksheet in the addin. Problem is i can't seem to

view
the sheet in either excel or in VBA once it is converted into an addin.

Is
it possible to make these addin worksheets visible in excel or VBA so that

i
can add comments into the worksheet without having to unload the addin,

make
the changes in the worksheet of the original workbook(.xls), compile,

convert
to add-in again, then reload the addin?

Thanks!



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 236
Default How to make Add-In worksheets viewable.

Hit 'Alt-F11' to get into the VBA Editor.
In the PROJECT window, select your add-in to open up the project.
Next, select 'Microsoft Excel Objects' to open it up.
Next, select 'ThisWorkbook'
In the PROPERTIES window, you will see a property called 'IsAddin'. It's
probably set to 'TRUE'. Change that to 'FALSE.
Remember, after you make your changes, go back and change this property to
'TRUE' then save the add-in.
HTH,
Gary Brown




"Bing" wrote:

Hello,

I'm converted a workbook project(.xls) into an add-In but i find frequently
i need to add or modify contents of a worksheet such as comments to myself,
version number in a worksheet in the addin. Problem is i can't seem to view
the sheet in either excel or in VBA once it is converted into an addin. Is
it possible to make these addin worksheets visible in excel or VBA so that i
can add comments into the worksheet without having to unload the addin, make
the changes in the worksheet of the original workbook(.xls), compile, convert
to add-in again, then reload the addin?

Thanks!

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
Can I make a worksheet protected, locked AND not viewable? MBozeman Excel Discussion (Misc queries) 2 March 13th 10 11:31 PM
MS Excel 2003 - Worksheets on viewable Salochini Excel Worksheet Functions 1 June 25th 08 04:05 PM
Viewable columns BruceC Excel Discussion (Misc queries) 2 November 27th 07 03:25 AM
Some worksheets not viewable within a workbook on a particular PC Rob Excel Discussion (Misc queries) 3 February 23rd 06 06:00 PM
Picture is not viewable Deecee7 Excel Discussion (Misc queries) 1 August 11th 05 07:43 PM


All times are GMT +1. The time now is 02:25 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"