#1   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel addons


Has anyone got any impressive excel add ons- in code format preferable
to add to my system?? anything at all is fine- i just want to see what
will look impressive for my IT coursework thanks in advance!
NITISH


--
hustla7
------------------------------------------------------------------------
hustla7's Profile: http://www.excelforum.com/member.php...o&userid=37760
View this thread: http://www.excelforum.com/showthread...hreadid=574174

  #2   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 179
Default Excel addons

Try this code to Install Addin

Private Sub AddIn_Install()


Dim SourceFile, DestinationFile, MyFile, lblMsg
On Error GoTo errMessage
MyFile = "\AddinName.xla"
Set tmpWB = Workbooks.Add
SourceFile = ThisWorkbook.Path + MyFile
DestinationFile = Application.LibraryPath + MyFile
FileCopy SourceFile, DestinationFile
AddIns.Add Filename:=DestinationFile
AddIns("AddinName").Installed = True
tmpWB.Close False
lblMsg = "AddinName Utilities has been successfully installed!" & vbNewLine
MsgBox lblMsg, vbOKOnly + vbInformation, "PharmARC Utilities"
Application.ScreenUpdating = True
Exit Sub
errMessage:
If Error "" Then
MsgBox Error, vbCritical, "AddinName Utilities"
tmpWB.Close False
End If
End Sub

"hustla7" wrote:


Has anyone got any impressive excel add ons- in code format preferable
to add to my system?? anything at all is fine- i just want to see what
will look impressive for my IT coursework thanks in advance!
NITISH


--
hustla7
------------------------------------------------------------------------
hustla7's Profile: http://www.excelforum.com/member.php...o&userid=37760
View this thread: http://www.excelforum.com/showthread...hreadid=574174


  #3   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel addons


It might be even more impressive if you found it yourself by using a
search engine. :)


--
raypayette


------------------------------------------------------------------------
raypayette's Profile: http://www.excelforum.com/member.php...o&userid=29569
View this thread: http://www.excelforum.com/showthread...hreadid=574174

  #4   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel addons


that code either doesn't work (unlikely) or i dont know how to work it(
much more likely). thanx newway but ok- ill use google to find
something! thanx Ray!


--
hustla7
------------------------------------------------------------------------
hustla7's Profile: http://www.excelforum.com/member.php...o&userid=37760
View this thread: http://www.excelforum.com/showthread...hreadid=574174

  #5   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 1
Default Excel addons


http://www.office-addins.com/-excel-addins/


--
hustla7
------------------------------------------------------------------------
hustla7's Profile: http://www.excelforum.com/member.php...o&userid=37760
View this thread: http://www.excelforum.com/showthread...hreadid=574174



  #6   Report Post  
Posted to microsoft.public.excel.misc
external usenet poster
 
Posts: 762
Default Excel addons

hustla7 -

Has anyone got any impressive excel add ons- in code format preferable to
add to my system?? anything at all is fine- i just want to see what will
look impressive for my IT coursework thanks in advance! NITISH <


I'm not sure my VBA code would be characterized as "impressive," but you
could download and examine the free, unprotected "Better Histogram" add-in
from http://www.treeplan.com.

- Mike
http://www.mikemiddleton.com


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
Stop excel from dropping the 0 in the beginning of a number? Rosewood Setting up and Configuration of Excel 12 April 4th 23 02:12 PM
Open Excel 2003 from Windows Explorer pmpjr Excel Discussion (Misc queries) 9 September 11th 06 03:58 PM
Need suggestions for some uses of Ms Excel Bible John Excel Discussion (Misc queries) 1 February 27th 06 05:30 PM
Excel Range Value issue (Excel 97 Vs Excel 2003) Keeno Excel Discussion (Misc queries) 2 June 13th 05 02:01 PM
Excel 2002 and 2000 co-install. Control Which Starts ? cnuk Excel Discussion (Misc queries) 2 January 17th 05 08:07 PM


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