Here is the case:
An application shall be used with different devices (in my case DAQs), by different manufacturers.
On the PC on which I develop the app there are drivers, etc. for the different devices.
When I try to run the executable on a computer which has one of the devices, and respectively drivers only for it, the application cannot start, because it cannot find some of the files, declared as
function MyFunc: external 'something.DLL';.
I checked "
conditional uses" but it does not seem like my case.
Since the application does not want to start at all, I think that
try...except cannot help me.
Could I do something else, or I shall make different builds for different devices?