Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Inexpensive and easy to use installer for Excel

Does anyone know if there is any inexpensive and easy to use installer
to install Excel application on other's computer?

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 4,391
Default Inexpensive and easy to use installer for Excel

Do you mean you have an Excel workbook that needs to "installed" ?
Does this mean it requires certain components/references to be present on
the user's machine ?

NickHK

wrote in message
oups.com...
Does anyone know if there is any inexpensive and easy to use installer
to install Excel application on other's computer?



  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 7
Default Inexpensive and easy to use installer for Excel

That is right, Nick. Any idea?

  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 28
Default Inexpensive and easy to use installer for Excel

I would recommend NSIS. It has a very complete, easy to learn language
for scripting installations. The documentation is quite good (lots of
examples) and there is an active forum.

http://nsis.sourceforge.net/Main_Page
http://forums.winamp.com/forumdisplay.php?s=&forumid=65

I posted an example script for installing an Excel Add-In in this
newsgroup earlier this year.

Dave Parker

wrote:
That is right, Nick. Any idea?


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 29
Default Inexpensive and easy to use installer for Excel

Thanks Dave. Looks like a good program. I cannot see the price. Is
it free?



  #6   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 29
Default Inexpensive and easy to use installer for Excel

By the way, can this program automatically picks up the
components/objects that are used in the Excel application and package
them into the installer?
Also, will it install these components/objects on the user's PC?

  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2,452
Default Inexpensive and easy to use installer for Excel

I use INNO to install a quite complex add-in, including 2 other .xla files
and a number of .dll files.
Works very well and it is free. Help is a bit sparse, but everything is
there.
Good newsgroup where questions usually are answered quickly.

RBS

wrote in message
oups.com...
Does anyone know if there is any inexpensive and easy to use installer
to install Excel application on other's computer?


  #8   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 28
Default Inexpensive and easy to use installer for Excel

It is free & open-source.

Generally speaking NSIS doesn't do anything automatically. It is a
programming language and compiler specifically designed for writing
installation programs. If the components are specific files (dll's?)
you would have to include them in the list of files to be packaged with
the installer. Then you would have to programatically check the target
machine to determine if the files are already installed, either by
checking the file system or by checking the registry whichever seems to
be the most reliable. If the files are not installed, your installer
will have to copy the files to the appropriate place and may have to
"install" the files perhaps by setting specific registry keys.

I've only used NSIS to install a stand-alone VBA Add-in. I didn't have
to worry about installing extra components, so I'm afraid I can't help
with the details.

Dave Parker

Excel 009 wrote:
By the way, can this program automatically picks up the
components/objects that are used in the Excel application and package
them into the installer?
Also, will it install these components/objects on the user's PC?


  #9   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 29
Default Inexpensive and easy to use installer for Excel

Thanks, RB.

Yes, this is a Superb newsgroup.

Could you send me the file that you create the add-in installer? This
might be what I need. Thank you in advanced.

NSIS has nice interface though.
http://nsis.sourceforge.net/Screenshots

- A



RB Smissaert wrote:
I use INNO to install a quite complex add-in, including 2 other .xla files
and a number of .dll files.
Works very well and it is free. Help is a bit sparse, but everything is
there.
Good newsgroup where questions usually are answered quickly.

RBS

wrote in message
oups.com...
Does anyone know if there is any inexpensive and easy to use installer
to install Excel application on other's computer?


  #10   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 29
Default Inexpensive and easy to use installer for Excel

Thanks again, Dave. Could you send me the link of your posting on the
Add-in example?

-A



  #11   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 28
Default Inexpensive and easy to use installer for Excel

I'm not sure how this url will show up:
http://groups.google.com/group/micro...a9c8d2ac 6920

If the link doesn't work, search
http://groups.google.com/group/micro...el.programming for
NSIS installer.

I also posted to this thread on the NSIS forum:
http://forums.winamp.com/showthread....ighlight=Excel

Dave Parker

Excel 009 wrote:
Thanks again, Dave. Could you send me the link of your posting on the
Add-in example?

-A


  #12   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 39
Default Inexpensive and easy to use installer for Excel

It's quite a complex installer, but it might be some help to you.
Will send the file when I am back home.

RBS

Excel 009 wrote:
Thanks, RB.

Yes, this is a Superb newsgroup.

Could you send me the file that you create the add-in installer? This
might be what I need. Thank you in advanced.

NSIS has nice interface though.
http://nsis.sourceforge.net/Screenshots

- A



RB Smissaert wrote:
I use INNO to install a quite complex add-in, including 2 other .xla files
and a number of .dll files.
Works very well and it is free. Help is a bit sparse, but everything is
there.
Good newsgroup where questions usually are answered quickly.

RBS

wrote in message
oups.com...
Does anyone know if there is any inexpensive and easy to use installer
to install Excel application on other's computer?


  #13   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 29
Default Inexpensive and easy to use installer for Excel

Thank Dave and RB. Very helpful information you guys provide.

- A

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
Installer comes up when I try to open excel Danie Excel Discussion (Misc queries) 0 July 18th 06 06:56 AM
Excel Installer Chris Watson Excel Discussion (Misc queries) 1 February 8th 06 02:57 AM
Excel Installer Error Reedler Setting up and Configuration of Excel 0 June 1st 05 12:08 AM
excel installer murry Excel Discussion (Misc queries) 1 April 20th 05 09:11 AM
create installer for Excel application [email protected] Excel Discussion (Misc queries) 1 January 25th 05 12:33 PM


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

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"