intall / redistribution |
Post Reply |
Author | |
blockwood
Groupie Joined: 23 March 2004 Status: Offline Points: 45 |
Post Options
Thanks(0)
Posted: 28 April 2004 at 9:05pm |
I'm ready to create install for new app. using code jock.
Do I simply add CommandBars.OCX to my install scenario? Here is line in my INNO Install ; CodeJock Source: ..\System32files\CommandBars.OCX; DestDir: {sys}; Flags: restartreplace uninsneveruninstall regserver; Attribs: system |
|
eliasp
Newbie Joined: 28 April 2004 Location: Greece Status: Offline Points: 7 |
Post Options
Thanks(0)
|
Yes, you only need the OCX file. Do not forget to register it on the installation computer - meaning COM registration with regsvr32 (or if your installer supports it). I did so for Windows 2000 / XP installation and it worked but I have no idea about older platforms like Windows 9*. |
|
Boyd
Senior Member Joined: 08 December 2003 Location: United States Status: Offline Points: 285 |
Post Options
Thanks(0)
|
Blockwood, I also use INNO setup, and the line you posted looks good. I don't believe the 'restartreplace' flag is necessary for this control, but it doesn't hurt to leave it in. You would also suggest you list this as a shared file since other software may also use the CommandBars.ocx file. Even though you set 'uninsneveruninstall' for your setup program, someone else may have their setup program set to uninstall it if nobody else is using it. Marking it as a shared file will increase the "usage" count for that control and hopefully prevent someone else's uninstall program from removing the control while your application still uses it. |
|
blockwood
Groupie Joined: 23 March 2004 Status: Offline Points: 45 |
Post Options
Thanks(0)
|
eliasp and Boyd
thanks guys for great answers! Much appreciated |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |