Link to home
Start Free TrialLog in
Avatar of xodos
xodos

asked on

create an invisible install

dear sir ,
i have an application made on visual basic with 2 ocx files ,
how can i make an installation of these 3 files to the system root and adding a registry key in the run application on startup ,
thank you .
ASKER CERTIFIED SOLUTION
Avatar of vinnyd79
vinnyd79

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of xodos
xodos

ASKER

do you mean a standard exe project ? is it the same ?
Yes. Check out the beginning of this link for info in the resource editor.

http://www.zarr.net/vb/articles/vb6res.asp

Add the 3 files as custom resources starting with the exe. when you compile the exe,it will contain the resource file.

Also add the following line to the end of the form load event:

Unload Me

So the program will end when finished.