Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1
Default Load On Demand Addins

Hi

I have created Excel an AddIn in VB and i wish to load it when my program opens excel. What is the code that i have to write for that. I have already set the startup option in addin to "Load On Demand". Plz.. Hel

Thank

Vikram Kohli
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 11,272
Default Load On Demand Addins

Vikram,

If you install the addin (ToolsAddins) and check it, it always loads when
Excel starts.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the Purbecks
(remove nothere from the email address if mailing direct)

"Vikram Kohli" wrote in message
...
Hi,

I have created Excel an AddIn in VB and i wish to load it when my program

opens excel. What is the code that i have to write for that. I have already
set the startup option in addin to "Load On Demand". Plz.. Help

Thanks

Vikram Kohli



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,718
Default Load On Demand Addins

The loading of standard Excel add-ins is controlled through Tools, Add-ins.
If this is a COM Add-in its loading is controlled through Tools, COM
Add-ins. That menu item is not visible by default in Excel. To add it to
your menu you have to go into View, Toolbars, Customize. Go to the Commands
tab and the Tools category. You'll find COM Add-ins in the list of
commands. All you have to do is drag it to your Tools menu.

--
Jim Rech
Excel MVP
"Vikram Kohli" wrote in message
...
| Hi,
|
| I have created Excel an AddIn in VB and i wish to load it when my program
opens excel. What is the code that i have to write for that. I have already
set the startup option in addin to "Load On Demand". Plz.. Help
|
| Thanks
|
| Vikram Kohli


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Load On Demand Addins

Hi Bob

1) My addin is a dll not an xla file.
2) I don't want my addin to load every time when excel starts instead i want it to load when i click on a button from my ex

Thank

----- Bob Phillips wrote: ----

Vikram

If you install the addin (ToolsAddins) and check it, it always loads whe
Excel starts

--

HT

Bob Phillip
... looking out across Poole Harbour to the Purbeck
(remove nothere from the email address if mailing direct

"Vikram Kohli" wrote in messag
..
Hi
I have created Excel an AddIn in VB and i wish to load it when my progra

opens excel. What is the code that i have to write for that. I have alread
set the startup option in addin to "Load On Demand". Plz.. Hel
Thank
Vikram Kohl




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Load On Demand Addins


Hi ji

There is no command as COM Add-In when i have selected Tools category in Visual Basic

----- Jim Rech wrote: ----

The loading of standard Excel add-ins is controlled through Tools, Add-ins.
If this is a COM Add-in its loading is controlled through Tools, COM
Add-ins. That menu item is not visible by default in Excel. To add it to
your menu you have to go into View, Toolbars, Customize. Go to the Commands
tab and the Tools category. You'll find COM Add-ins in the list of
commands. All you have to do is drag it to your Tools menu

--
Jim Rec
Excel MV
"Vikram Kohli" wrote in message
..
| Hi

| I have created Excel an AddIn in VB and i wish to load it when my program
opens excel. What is the code that i have to write for that. I have already
set the startup option in addin to "Load On Demand". Plz.. Hel

| Thank

| Vikram Kohli





  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,718
Default Load On Demand Addins

I was speaking of Excel not VB. The COM Add-in item should be added to
Excel's Tools menu if this add-in is written to work with Excel.

--
Jim Rech
Excel MVP
"Vikram Kohli" wrote in message
...
|
| Hi jim
|
| There is no command as COM Add-In when i have selected Tools category in
Visual Basic.
|
| ----- Jim Rech wrote: -----
|
| The loading of standard Excel add-ins is controlled through Tools,
Add-ins.
| If this is a COM Add-in its loading is controlled through Tools, COM
| Add-ins. That menu item is not visible by default in Excel. To add
it to
| your menu you have to go into View, Toolbars, Customize. Go to the
Commands
| tab and the Tools category. You'll find COM Add-ins in the list of
| commands. All you have to do is drag it to your Tools menu.
|
| --
| Jim Rech
| Excel MVP
| "Vikram Kohli" wrote in message
| ...
| | Hi,
| |
| | I have created Excel an AddIn in VB and i wish to load it when my
program
| opens excel. What is the code that i have to write for that. I have
already
| set the startup option in addin to "Load On Demand". Plz.. Help
| |
| | Thanks
| |
| | Vikram Kohli
|
|
|


  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Load On Demand Addins

Hello Jim,

I have more or less the same problem as Vikram.
In my VB Menu bar is a option Add-Ins. If I click that option I got an
Add-In Manager showing a empty box of available Add-Ins and no option to ad
one.
When I follow your suggestion ViewToolbarsCommands I see in the command
column an function "Additional Controls". However, when I drag that one to
the Menu bar it is not possible to activate it.
How can I made this function active? I'm using Office 2000 (which is
different from older versions on this point, according to the help file) and
VB 6.3.


"Vikram Kohli" wrote in message
...

Hi jim

There is no command as COM Add-In when i have selected Tools category in

Visual Basic.

----- Jim Rech wrote: -----

The loading of standard Excel add-ins is controlled through Tools,

Add-ins.
If this is a COM Add-in its loading is controlled through Tools, COM
Add-ins. That menu item is not visible by default in Excel. To add

it to
your menu you have to go into View, Toolbars, Customize. Go to the

Commands
tab and the Tools category. You'll find COM Add-ins in the list of
commands. All you have to do is drag it to your Tools menu.

--
Jim Rech
Excel MVP
"Vikram Kohli" wrote in message
...
| Hi,
|
| I have created Excel an AddIn in VB and i wish to load it when my

program
opens excel. What is the code that i have to write for that. I have

already
set the startup option in addin to "Load On Demand". Plz.. Help
|
| Thanks
|
| Vikram Kohli





  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,824
Default Load On Demand Addins

I think you missed Jim's "Tools Category" reference.

View|toolbars|Commands Tab|Tools Category|COM Add-ins... (about half way down)

Drag it to your favorite toolbar. (I put mine right below Tools|Addins)


Gerrit van Stempvoort wrote:

Hello Jim,

I have more or less the same problem as Vikram.
In my VB Menu bar is a option Add-Ins. If I click that option I got an
Add-In Manager showing a empty box of available Add-Ins and no option to ad
one.
When I follow your suggestion ViewToolbarsCommands I see in the command
column an function "Additional Controls". However, when I drag that one to
the Menu bar it is not possible to activate it.
How can I made this function active? I'm using Office 2000 (which is
different from older versions on this point, according to the help file) and
VB 6.3.

"Vikram Kohli" wrote in message
...

Hi jim

There is no command as COM Add-In when i have selected Tools category in

Visual Basic.

----- Jim Rech wrote: -----

The loading of standard Excel add-ins is controlled through Tools,

Add-ins.
If this is a COM Add-in its loading is controlled through Tools, COM
Add-ins. That menu item is not visible by default in Excel. To add

it to
your menu you have to go into View, Toolbars, Customize. Go to the

Commands
tab and the Tools category. You'll find COM Add-ins in the list of
commands. All you have to do is drag it to your Tools menu.

--
Jim Rech
Excel MVP
"Vikram Kohli" wrote in message
...
| Hi,
|
| I have created Excel an AddIn in VB and i wish to load it when my

program
opens excel. What is the code that i have to write for that. I have

already
set the startup option in addin to "Load On Demand". Plz.. Help
|
| Thanks
|
| Vikram Kohli




--

Dave Peterson

  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 10
Default Load On Demand Addins

Hi Dave,

I was using View etc. in VB, but I should use the EXCEL tab. Now it's
working, thanks.

"Dave Peterson" wrote in message
...
I think you missed Jim's "Tools Category" reference.

View|toolbars|Commands Tab|Tools Category|COM Add-ins... (about half way

down)

Drag it to your favorite toolbar. (I put mine right below Tools|Addins)


Gerrit van Stempvoort wrote:

Hello Jim,

I have more or less the same problem as Vikram.
In my VB Menu bar is a option Add-Ins. If I click that option I got an
Add-In Manager showing a empty box of available Add-Ins and no option to

ad
one.
When I follow your suggestion ViewToolbarsCommands I see in the

command
column an function "Additional Controls". However, when I drag that one

to
the Menu bar it is not possible to activate it.
How can I made this function active? I'm using Office 2000 (which is
different from older versions on this point, according to the help file)

and
VB 6.3.

"Vikram Kohli" wrote in message
...

Hi jim

There is no command as COM Add-In when i have selected Tools category

in
Visual Basic.

----- Jim Rech wrote: -----

The loading of standard Excel add-ins is controlled through

Tools,
Add-ins.
If this is a COM Add-in its loading is controlled through Tools,

COM
Add-ins. That menu item is not visible by default in Excel. To

add
it to
your menu you have to go into View, Toolbars, Customize. Go to

the
Commands
tab and the Tools category. You'll find COM Add-ins in the list

of
commands. All you have to do is drag it to your Tools menu.

--
Jim Rech
Excel MVP
"Vikram Kohli" wrote in message
...
| Hi,
|
| I have created Excel an AddIn in VB and i wish to load it when

my
program
opens excel. What is the code that i have to write for that. I

have
already
set the startup option in addin to "Load On Demand". Plz.. Help
|
| Thanks
|
| Vikram Kohli




--

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
How to easily (!) load Macros from external files on demand? Artur McCennon Excel Discussion (Misc queries) 2 September 23rd 09 01:32 PM
Excel Version 2007 - AddIns load individually dplunkett Excel Discussion (Misc queries) 1 May 9th 09 07:36 AM
Changing the order the addins load havenlad Excel Discussion (Misc queries) 2 June 16th 07 12:13 AM
how to load addins in Excel ccharles Excel Discussion (Misc queries) 1 April 14th 05 01:53 AM
As Addins load question Stuart[_5_] Excel Programming 4 July 12th 03 09:22 PM


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