Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 93
Default distribution problems; users don't have this and misc

I have discovered that contrary to the IT dept, all company users do
not have identical installations. Well, that's not really that
surprising. Anyhow, I have distributed a wb that has an additional
add-in (analysis tool kit). I have also installed a reference to it
in VBA.

How does someone check to see what is installed? Then what do you do
about it? Can you install it with a VBA program? Is there a way to
'bring along' your add-ins with the wb?


#2
And I've also discovered, here in this group, that DATEDIF was damaged
in an Excel2007 spak. How would I check to verify the release level
and spaks installed?

#3
Is there a replacement for DATEDIF?
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 1,049
Default distribution problems; users don't have this and misc

1)
you could call the following sub from the workbook's open event:

Sub testAddIn()

Dim ai As AddIn

For Each ai In Application.AddIns
If ai.Name = "ATPVBAEN.XLA" Then
ai.Installed = True
Exit For
End If
Next

End Sub

this add-in is a standard part of the excel installation, so you shoul;d not
need to port it with the workbook.

2 & 3) use DateDiff
note the 2nd 'f' in xl2007 :)


"cate" wrote in message
...
I have discovered that contrary to the IT dept, all company users do
not have identical installations. Well, that's not really that
surprising. Anyhow, I have distributed a wb that has an additional
add-in (analysis tool kit). I have also installed a reference to it
in VBA.

How does someone check to see what is installed? Then what do you do
about it? Can you install it with a VBA program? Is there a way to
'bring along' your add-ins with the wb?


#2
And I've also discovered, here in this group, that DATEDIF was damaged
in an Excel2007 spak. How would I check to verify the release level
and spaks installed?

#3
Is there a replacement for DATEDIF?


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
What is the best way of collectiong as much debug info as possible when users hit problems. Chrisso Excel Programming 3 June 12th 07 05:20 AM
Sharing Problems- users keep reappearing even though logged out. Gai Excel Discussion (Misc queries) 0 February 23rd 07 02:53 AM
Excel 2007 - Are Users Experiencing Problems with Charts? CINDY Charts and Charting in Excel 1 November 9th 06 12:25 PM
Visual C++ - Problems with users clicking! Angel1058 Excel Programming 0 January 25th 06 02:57 PM
Any Visual Basic Users Having Mouse Scrolling Problems? SidBord Excel Programming 13 April 27th 04 02:57 AM


All times are GMT +1. The time now is 05:02 PM.

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"