It looks like the exception is occurring due to a component you are using in the application not being registered on the machine you are running it on.
I assume you are using an unmanaged COM library of some kind, possibly a control on your form?
If this is the case and you know which component it is you can use Regsvr32 to register it.
(Regsvr32 is the command-line tool that registers .dll files as
command components in the registry)
To do so, open a command prompt window, navigate to the dll in question and run the following command regsvr32.exe filename.dll
If the above is not the case then please could you post the full exception / stacktrace to be analysed.