Hello,
this is my first post to the ml. I am rather new to python under windows, so
probably mine is an easy question, but I've searched for a solution and
found none.
I am writing a (set of) simple COM servers, which basically take the input
from excel worksheets, do some computation, invoke som
Hussain Jiwani wrote:
> Following is a snippet of code that I have been using to figure out if
> an addin in installed.
>
> xlApp = win32com.client.dynamic.Dispatch('Excel.Application')
> xlApp.DisplayAlerts = 0
> xlApp.Interactive = 1
> if xlApp.Application.Addins.C
Following is a snippet of code that I have been using to figure out if
an addin in installed.
xlApp = win32com.client.dynamic.Dispatch('Excel.Application')
xlApp.DisplayAlerts = 0
xlApp.Interactive = 1
if xlApp.Application.Addins.Count <= 0:
print "Termi
mjohnson wrote:
> I am having a problem with an excel add-in which is installed via
> xlApp.Workbooks.Open("C:/Program
> Files/Program/XLOF32.xla").RunAutoMacros(1)
>
> I can then add the add-in and install it via
> xlApp.AddIns.Add ("C:/Program Files/Program/XLOF32.xla",True)
> xlApp.AddIns.Item(I
Hello,
I have made a COM server using python and registered it using
win32com.server.register.UseCommandLine(TrackingClient). That all works
fine and I can instantiate it using late binding, however I now need to
reference that in C# or VBA in excel. The problem I have is that when
I am having a problem with an excel add-in which is installed via
xlApp.Workbooks.Open("C:/Program Files/Program/XLOF32.xla").RunAutoMacros(1)
I can then add the add-in and install it via
xlApp.AddIns.Add ("C:/Program Files/Program/XLOF32.xla",True)
xlApp.AddIns.Item(Index='Excel Functions').Inst