Quote:
Originally posted by Aram Ghazanchyan
But I'm checking that component in list when making setup. How can I copy that ActiveX compnonent to client machine registry? I couldn't find it im manual
|
I'm not aware of events covered by MS VStudio Package and Deployment Wizard, but I guess yuo have to have the possibility to use "AfterInstall" event of all components u're installing.
So there you have to write shell-code like:
"regsvr32 <my_path_where_component_have_been_installed\>MyActiveX.ocx"
to unregister component (i.e. on Uninstall) use:
"regsvr32.exe /u MyActiveX.ocx"
try this.