ExcelBanter

ExcelBanter (https://www.excelbanter.com/)
-   Excel Programming (https://www.excelbanter.com/excel-programming/)
-   -   Calling a sub from a addin in vba (https://www.excelbanter.com/excel-programming/281256-calling-sub-addin-vba.html)

Roger[_9_]

Calling a sub from a addin in vba
 
I have created an addin from a sub() that I wrote in vba.

Now I want to create a button that runs the sub.

What must I put in the macro run box?

Addin name : addin
Project name : project
sub name : work()

Thanks

Bob Phillips[_5_]

Calling a sub from a addin in vba
 
Roger,

Immediate way

Application.Run "Work"

Better way,

set a reference to the addin in ToolsReferences, and then just call it like
any other sub.

--

HTH

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

"Roger" wrote in message
...
I have created an addin from a sub() that I wrote in vba.

Now I want to create a button that runs the sub.

What must I put in the macro run box?

Addin name : addin
Project name : project
sub name : work()

Thanks




Roger[_9_]

Calling a sub from a addin in vba
 
Hmm

I want to make it so that the user can run the program at
any time, from any workbook. As they get a dump from
another program and this will sort it out into how they
want it.

Maybe I just misunderstood what you said.. could you
re-word it please then :)

Thanks

-----Original Message-----
Roger,

Immediate way

Application.Run "Work"

Better way,

set a reference to the addin in ToolsReferences, and then

just call it like
any other sub.

--

HTH

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

"Roger" wrote in message
...
I have created an addin from a sub() that I wrote in

vba.

Now I want to create a button that runs the sub.

What must I put in the macro run box?

Addin name : addin
Project name : project
sub name : work()

Thanks



.


Bob Phillips[_5_]

Calling a sub from a addin in vba
 
Roger,

As it is an addin, you will need to install it on each machine that you want
to run from, agreed? I also assume that you don't want to set a reference to
the addin in each workbook, so the immediate way is best.

That being so, I assume you know how to create a button and add a macro call
from there. Let's assume that the button macro is called "RogersSub".

The code for "RogersSub" would look something akin to

Sub RogersSub()
Application.Run "Work"
End Sub

That should do it.

--

HTH

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

"Roger" wrote in message
...
Hmm

I want to make it so that the user can run the program at
any time, from any workbook. As they get a dump from
another program and this will sort it out into how they
want it.

Maybe I just misunderstood what you said.. could you
re-word it please then :)

Thanks

-----Original Message-----
Roger,

Immediate way

Application.Run "Work"

Better way,

set a reference to the addin in ToolsReferences, and then

just call it like
any other sub.

--

HTH

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

"Roger" wrote in message
...
I have created an addin from a sub() that I wrote in

vba.

Now I want to create a button that runs the sub.

What must I put in the macro run box?

Addin name : addin
Project name : project
sub name : work()

Thanks



.




Kevin Beckham

Calling a sub from a addin in vba
 
As an addendum to Bob's comment, you can reference the add-
in as follows

Application.Run "addin.xla!Work"

Kevin Beckham

-----Original Message-----
Roger,

As it is an addin, you will need to install it on each

machine that you want
to run from, agreed? I also assume that you don't want to

set a reference to
the addin in each workbook, so the immediate way is best.

That being so, I assume you know how to create a button

and add a macro call
from there. Let's assume that the button macro is

called "RogersSub".

The code for "RogersSub" would look something akin to

Sub RogersSub()
Application.Run "Work"
End Sub

That should do it.

--

HTH

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

"Roger" wrote in message
...
Hmm

I want to make it so that the user can run the program

at
any time, from any workbook. As they get a dump from
another program and this will sort it out into how they
want it.

Maybe I just misunderstood what you said.. could you
re-word it please then :)

Thanks

-----Original Message-----
Roger,

Immediate way

Application.Run "Work"

Better way,

set a reference to the addin in ToolsReferences, and

then
just call it like
any other sub.

--

HTH

Bob Phillips
... looking out across Poole Harbour to the

Purbecks
(remove nothere from the email address if mailing

direct)

"Roger" wrote in message
...
I have created an addin from a sub() that I wrote in

vba.

Now I want to create a button that runs the sub.

What must I put in the macro run box?

Addin name : addin
Project name : project
sub name : work()

Thanks


.



.



All times are GMT +1. The time now is 01:07 AM.

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