Best place to install an OCX?
If I've got to distribute an ocx file with my app, where is the best place to put it? In the System directory or in the same directory as my app.
The OCX I'm distributing is a commercial one, so its possible (but very unlikely) users will already have it on their computer.
If I put it in my application directory, do I need the line;
RegDLL "$INSTDIR\MyThing.ocx"
instead of;
RegDLL "$SYSDIR\MyThing.ocx"
(where MyThing is my ocx file).
Thanks