Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Hello.
User defined functions can be made available through Add-Ins... write your code for the function, save it as an .xla file, use Tools-Add-ins to load the addin, and the function you wrote is available to be used as any other function. Is it possible to similiarly use code modules through Add-Ins? Write a utilitiy module, load the add-in, use the utility from another file's code modules by calling the subroutine the as you would the code modules were in the same workbook? Thanks, Mark |
#2
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Are you asking for the syntax for executing a proceedure from a separate
project? If you do this it will only work on the one machine or require moving project and addin to any machine you use it on. typically you might try the personal.xla instead of addin for shared or portable code. "mark" wrote: Hello. User defined functions can be made available through Add-Ins... write your code for the function, save it as an .xla file, use Tools-Add-ins to load the addin, and the function you wrote is available to be used as any other function. Is it possible to similiarly use code modules through Add-Ins? Write a utilitiy module, load the add-in, use the utility from another file's code modules by calling the subroutine the as you would the code modules were in the same workbook? Thanks, Mark |
#3
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
Unless you create a reference to the addin from the project where you want
to use the code, you would need to use Application.Run "MyAddin.xls!MyMacro",arg1,arg2 -- Regards, Tom Ogilvy "mark" wrote in message ... Hello. User defined functions can be made available through Add-Ins... write your code for the function, save it as an .xla file, use Tools-Add-ins to load the addin, and the function you wrote is available to be used as any other function. Is it possible to similiarly use code modules through Add-Ins? Write a utilitiy module, load the add-in, use the utility from another file's code modules by calling the subroutine the as you would the code modules were in the same workbook? Thanks, Mark |
Reply |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
CAn you make Toolbars Portable? | Setting up and Configuration of Excel | |||
make addin portable | Excel Programming | |||
make addin portable | Excel Programming | |||
make addin portable | Excel Programming | |||
'portable' UDFs??? | Excel Programming |