1

I want to create a setup for an existent .exe file. This file needs some .ocx and .dll files to run correctly. So this mentioned setup should paste these all files in a specified path and then run the .exe file.

I have tried with installshield 2010 basic and InstallScript projects but i could not create some of dialogs in the format that i wanted.

Is there any way to create this setup? Or any one may help me to work with installshield?

M_Mogharrabi
  • 1,369
  • 5
  • 29
  • 57

1 Answers1

0

You might find working with another setup program easier, try the NSIS (Nullsoft Scriptable Install System). It has a RegDLL function:

RegDLL "$WINDIR\OCX\vbalGrid6.ocx"

if you need that also.

BenMorel
  • 34,448
  • 50
  • 182
  • 322
gmlime
  • 1,017
  • 8
  • 17